From: Daniel Fiala Date: Fri, 14 May 2010 15:29:20 +0000 (+0200) Subject: Typo. X-Git-Tag: holmes-import~8 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=5c17cb56b008c8d5998862974d6f8637bc4c7f97;p=libucw.git Typo. --- diff --git a/ucw/strtonum.h b/ucw/strtonum.h index f4ff4f7a..03ec6895 100644 --- a/ucw/strtonum.h +++ b/ucw/strtonum.h @@ -37,7 +37,7 @@ const char *str_to_##suffix(type *num, const char *str, const char **next, const #define STN_SIGNED_CONVERTOR(utype, itype, suffix) \ static inline const char *str_to_##suffix(itype *num, const char *str, const char **next, const uns flags) \ { \ - return str_to##suffix((utype*) num, str, next, flags | STN_SIGNED); \ + return str_to_##suffix((utype*) num, str, next, flags | STN_SIGNED); \ } STN_DECLARE_CONVERTOR(uns, uns);