X-Git-Url: http://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=test%2Fcardfile.c;h=c549659b493ad569fb7795ea2e8defb4add3e9a2;hb=c3e8eb8e7407c4173394c2f52c635ed86327edc6;hp=76185611af87459098afa28b697d85fbe26d0438;hpb=92e187a3459ab7ce1613a3684ca6642447c73620;p=ncurses.git diff --git a/test/cardfile.c b/test/cardfile.c index 76185611..c549659b 100644 --- a/test/cardfile.c +++ b/test/cardfile.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1999-2008,2010 Free Software Foundation, Inc. * + * Copyright (c) 1999-2010,2012 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 * @@ -29,7 +29,7 @@ /* * Author: Thomas E. Dickey * - * $Id: cardfile.c,v 1.37 2010/05/01 22:19:02 tom Exp $ + * $Id: cardfile.c,v 1.39 2012/06/09 20:30:32 tom Exp $ * * File format: text beginning in column 1 is a title; other text is content. */ @@ -91,7 +91,7 @@ skip(const char *buffer) static void trim(char *buffer) { - unsigned n = strlen(buffer); + size_t n = strlen(buffer); while (n-- && isspace(UChar(buffer[n]))) buffer[n] = 0; } @@ -129,7 +129,7 @@ add_title(const char *title) static void add_content(CARD * card, const char *content) { - unsigned total, offset; + size_t total, offset; content = skip(content); if ((total = strlen(content)) != 0) { @@ -414,7 +414,7 @@ cardfile(char *fname) if ((win = newwin(panel_high, panel_wide, y, x)) == 0) break; - wbkgd(win, COLOR_PAIR(pair_2)); + wbkgd(win, (chtype) COLOR_PAIR(pair_2)); keypad(win, TRUE); p->panel = new_panel(win); box(win, 0, 0); @@ -588,7 +588,7 @@ main(int argc, char *argv[]) start_color(); init_pair(pair_1, COLOR_WHITE, COLOR_BLUE); init_pair(pair_2, COLOR_WHITE, COLOR_CYAN); - bkgd(COLOR_PAIR(pair_1)); + bkgd((chtype) COLOR_PAIR(pair_1)); } else { try_color = FALSE; }