* tty.h (printwstr): If LEN is not positive, ignore the request.
Этот коммит содержится в:
родитель
ff6e206b42
Коммит
ff3ca5ecb2
@ -35,7 +35,8 @@ void mc_refresh (void);
|
|||||||
/* print a string left-aligned, adjusted to exactly LEN characters */
|
/* print a string left-aligned, adjusted to exactly LEN characters */
|
||||||
static inline void printwstr (const char *s, int len)
|
static inline void printwstr (const char *s, int len)
|
||||||
{
|
{
|
||||||
printw("%-*.*s", len, len, s);
|
if (len > 0)
|
||||||
|
printw("%-*.*s", len, len, s);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Загрузка…
Ссылка в новой задаче
Block a user