From dc01dd60affb4688453f8b7204af66246f0850db Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Thu, 29 Nov 2007 13:48:43 +0100 Subject: [PATCH] Squashed compiler warnings about code with no effect (there really were surplus *'s). --- ChangeLog | 5 +++++ lib/dump.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0836536..c868654 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-11-29 Martin Mares + + * lib/dump.c: Squashed compiler warnings about code with + no effect (there really were surplus *'s). + 2007-11-06 Martin Mares * Released as 2.2.9. diff --git a/lib/dump.c b/lib/dump.c index 0915b00..04837e6 100644 --- a/lib/dump.c +++ b/lib/dump.c @@ -41,7 +41,7 @@ dump_validate(char *s, char *fmt) { if (*fmt == '#' ? !isxdigit(*s) : *fmt != *s) return 0; - *fmt++, *s++; + fmt++, s++; } return 1; } -- 2.39.2