X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Fclip_printw.c;h=dd3d7ee0579cd2353866b8647b0a0a243ffd7ad7;hp=c90cc85910ee1370a3bc8a7d34c854d88a0abed7;hb=43f75d22e281b6230678008b72621a76696f45ba;hpb=c8e187fc9682a3c5cfaebc480fc98d8585f6caf6 diff --git a/test/clip_printw.c b/test/clip_printw.c index c90cc859..dd3d7ee0 100644 --- a/test/clip_printw.c +++ b/test/clip_printw.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 2008,2009 Free Software Foundation, Inc. * + * Copyright (c) 2008-2009,2010 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 * @@ -26,7 +26,7 @@ * authorization. * ****************************************************************************/ /* - * $Id: clip_printw.c,v 1.4 2009/08/29 19:00:44 tom Exp $ + * $Id: clip_printw.c,v 1.6 2010/05/01 19:13:46 tom Exp $ * * demonstrate how to use printw without wrapping. */ @@ -247,7 +247,7 @@ show_help(WINDOW *win) getmaxyx(win, y_max, x_max); for (row = 0; row < (int) SIZEOF(table) && row < y_max; ++row) { - mvwprintw(win, row, 0, "%.*s", x_max, table[row]); + MvWPrintw(win, row, 0, "%.*s", x_max, table[row]); } while (wgetch(win) != 'q') beep(); @@ -337,7 +337,7 @@ test_clipping(WINDOW *win) } if ((buffer = typeMalloc(char, need)) != 0) { for (j = 0; j < need; ++j) { - buffer[j] = 'A' + (j % 26); + buffer[j] = (char) ('A' + (j % 26)); } buffer[need - 1] = '\0'; st.status = clip_wprintw(win, fmt, '[', buffer, ']');