test-parse-options: use appropriate cast in length_callback

OPT_CALLBACK() is passed &integer which is now an "int" rather than
"unsigned long". Update the length_callback function.

Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Brandon Casey 2008-08-13 19:48:57 -05:00 коммит произвёл Junio C Hamano
Родитель a96dc01e21
Коммит 8caa3acf3a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -15,7 +15,7 @@ int length_callback(const struct option *opt, const char *arg, int unset)
if (unset) if (unset)
return 1; /* do not support unset */ return 1; /* do not support unset */
*(unsigned long *)opt->value = strlen(arg); *(int *)opt->value = strlen(arg);
return 0; return 0;
} }