diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-09-23 21:52:38 -0400 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2010-09-24 15:26:17 +0300 |
commit | d3ea22379a4f8c2c98d50655547cf2041a3c1c8c (patch) | |
tree | d89aa20bb1f1b8c6c4eaa0bc5575aaf69885ceff | |
parent | fa50c60d7b3b4963a9e3810c41a216577f76d7af (diff) |
mtd-utils: punt duplicate normsg_cont define
Looks like someone copied & pasted it twice by accident.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
-rw-r--r-- | include/common.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/common.h b/include/common.h index f2b7b6b..e87b215 100644 --- a/include/common.h +++ b/include/common.h @@ -47,9 +47,6 @@ extern "C" { #define normsg(fmt, ...) do { \ printf(PROGRAM_NAME ": " fmt "\n", ##__VA_ARGS__); \ } while(0) -#define normsg_cont(fmt, ...) do { \ - printf(PROGRAM_NAME ": " fmt, ##__VA_ARGS__); \ -} while(0) #define normsg_cont(fmt, ...) do { \ printf(PROGRAM_NAME ": " fmt, ##__VA_ARGS__); \ } while(0) |