1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-03 05:18:29 +03:00

Wow, learn something new every day. Apparently, the signed-ness of char is

implementation-dependent; some archs (s390, arm, and ppc) default to
an unsigned char.
This commit is contained in:
Andres Salomon 2002-10-08 20:16:44 +00:00
parent faaedea286
commit d43773d634

View File

@ -423,7 +423,7 @@ static struct command *_find_command(const char *name)
static int _process_switches(int *argc, char ***argv) static int _process_switches(int *argc, char ***argv)
{ {
int index; int index;
char c; int c;
static struct option long_options[] = { static struct option long_options[] = {
{"read-only", 0, NULL, READ_ONLY}, {"read-only", 0, NULL, READ_ONLY},