Get rid of trailing blank.

Change-Id: I3aa2f4a6e25f610e0e9236835bbcb588eeb15c08
Reviewed-on: https://code.wireshark.org/review/17602
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2016-09-09 01:31:23 -07:00
parent 216392975d
commit d62d867295
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ xml_get_int(int *val, const char *str, const char *pattern, int *err, gchar **er
if (!ws_strtoi32(buf, &endptr, val)) {
*err = WTAP_ERR_BAD_FILE;
if (errno == ERANGE) {
if (*val < 0)
if (*val < 0)
*err_info = g_strdup_printf("dct3trace: %s value is too small, minimum is %d", pattern, *val);
else
*err_info = g_strdup_printf("dct3trace: %s value is too large, maximum is %d", pattern, *val);