X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Fview.c;h=2772a2773dde3a74645ff8b72ae3e31def214974;hp=bf4377f48e12c505e4f24082a49b236c68e38245;hb=119b5a6788c26bf7dcc99fcfd54e072946352a93;hpb=b5be26931d6488adcb1ff8bc07df9de378ce0d27 diff --git a/test/view.c b/test/view.c index bf4377f4..2772a277 100644 --- a/test/view.c +++ b/test/view.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998-2016,2017 Free Software Foundation, Inc. * + * Copyright (c) 1998-2017,2019 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 * @@ -51,7 +51,7 @@ * scroll operation worked, and the refresh() code only had to do a * partial repaint. * - * $Id: view.c,v 1.135 2017/10/23 09:18:01 tom Exp $ + * $Id: view.c,v 1.136 2019/01/27 00:52:06 tom Exp $ */ #include @@ -145,7 +145,7 @@ show_all(const char *tag) _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp)) "view %.*s", (int) strlen(tag), tag); i = (int) strlen(temp); - _nc_SPRINTF(temp + i, _nc_SLIMIT(sizeof(temp) - i) + _nc_SPRINTF(temp + i, _nc_SLIMIT(sizeof(temp) - (size_t) i) " %.*s", (int) sizeof(temp) - i - 2, fname); move(0, 0); printw("%.*s", COLS, temp);