summaryrefslogtreecommitdiff
path: root/sed
diff options
context:
space:
mode:
authorPaolo Bonzini <bonzini@gnu.org>2009-01-23 16:09:06 +0100
committerPaolo Bonzini <bonzini@gnu.org>2009-01-23 16:09:21 +0100
commit70341ff4532e41f762371c1c93f0dcd8d232a80f (patch)
treeb93147a733d80490d907356996f22b2f1142b27c /sed
parente476324a7b3f9eb5eef91ff1bf05385058d2d6b4 (diff)
downloadsed-70341ff4532e41f762371c1c93f0dcd8d232a80f.tar.gz
fix
Diffstat (limited to 'sed')
-rw-r--r--sed/sed.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sed/sed.h b/sed/sed.h
index dfcb4a2..d657a42 100644
--- a/sed/sed.h
+++ b/sed/sed.h
@@ -262,7 +262,7 @@ extern bool is_utf8;
#endif
#define MBSINIT(s) \
- (mb_cur_max == 1 ? 1 : mbsinit ((s))
+ (mb_cur_max == 1 ? 1 : mbsinit ((s)))
#define MBRLEN(s, n, ps) \
(mb_cur_max == 1 ? 1 : mbrtowc (NULL, s, n, ps))