2
0
mirror of https://github.com/xcat2/xNBA.git synced 2025-01-20 06:23:14 +00:00

fixed build error (danjlynch, repeat: this is *not* perl, this is *not* perl...)

This commit is contained in:
Dan Lynch 2006-05-15 09:34:27 +00:00
parent dccc6aed3a
commit a2799051b0

View File

@ -172,9 +172,11 @@ int waddchnstr ( WINDOW *win, const chtype *chstr, int n ) {
_advcurs_nowrap( win );
/* set rendition code here */
}
_restore_curs_pos( win, pos ) && return OK;
_restore_curs_pos( win, pos );
return OK;
err:
_restore_curs_pos( win, pos ) && return ERR;
_restore_curs_pos( win, pos );
return ERR;
}
/**