diff options
Diffstat (limited to '')
-rw-r--r-- | src/conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf.c b/src/conf.c index 2074a2638..ac9b83c2e 100644 --- a/src/conf.c +++ b/src/conf.c @@ -144,7 +144,7 @@ parse_key_value(char *str, size_t len, char **end) case KEY_PARSER_HEX: if( !isdigit(next) ) { - fprintf(stderr,_("Error: Digit expexted after 0x - %s\n"), str); + fprintf(stderr,_("Error: Digit expected after 0x - %s\n"), str); return -1; } value = (int) strtol(str+(i+1), end, 16); |