X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=ncurses%2Ftinfo%2Fmake_keys.c;h=f44f7c77ff7e3d6762a7566db65b624dec4075d4;hp=02eab426e5665f433ae717146e3c53886d918f3a;hb=8554ac8f8bb70116fbc962f529168d273e950e2b;hpb=a2ea66477b08cf07200cf7c319447d61d1360d85 diff --git a/ncurses/tinfo/make_keys.c b/ncurses/tinfo/make_keys.c index 02eab426..f44f7c77 100644 --- a/ncurses/tinfo/make_keys.c +++ b/ncurses/tinfo/make_keys.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998-2008,2010 Free Software Foundation, Inc. * + * Copyright (c) 1998-2010,2011 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -39,7 +39,7 @@ #define USE_TERMLIB 1 #include -MODULE_ID("$Id: make_keys.c,v 1.18 2010/05/22 17:48:21 tom Exp $") +MODULE_ID("$Id: make_keys.c,v 1.20 2011/10/22 16:34:50 tom Exp $") #include @@ -76,7 +76,7 @@ make_keys(FILE *ifp, FILE *ofp) unsigned maxlen = 16; int scanned; - while (fgets(buffer, sizeof(buffer), ifp) != 0) { + while (fgets(buffer, (int) sizeof(buffer), ifp) != 0) { if (*buffer == '#') continue; @@ -90,7 +90,7 @@ make_keys(FILE *ifp, FILE *ofp) continue; if (strlen(from) > maxlen) maxlen = (unsigned) strlen(from); - fprintf(ofp, "\t{ %4d, %-*.*s },\t/* %s */\n", + fprintf(ofp, "\t{ %4u, %-*.*s },\t/* %s */\n", code, (int) maxlen, (int) maxlen, to,