david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

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
1 changed files with 4 additions and 2 deletions

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;
}
/**