diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-05-22 03:46:33 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-05-22 03:46:33 +0200 |
commit | d616ab6bbb6c3768efb9474fa18d1e2f98c4793b (patch) | |
tree | efbcd76a62c4075092ea7850174a5b3bc2988e26 /editors/diff.c | |
parent | 9b90d9b503c7be343ae26ce7f834b1865ab66013 (diff) |
reformime: do not require \r\n
function old new delta
parse 958 1063 +105
packed_usage 28691 28712 +21
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'editors/diff.c')
-rw-r--r-- | editors/diff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/diff.c b/editors/diff.c index daa58af9b..8b1e92783 100644 --- a/editors/diff.c +++ b/editors/diff.c @@ -101,9 +101,9 @@ #include "libbb.h" #if 0 -//#define dbg_error_msg(...) bb_error_msg(__VA_ARGS__) +# define dbg_error_msg(...) bb_error_msg(__VA_ARGS__) #else -#define dbg_error_msg(...) ((void)0) +# define dbg_error_msg(...) ((void)0) #endif enum { /* print_status() and diffreg() return values */ |