1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 14:02:57 +02:00

Fixed some Nyquist bugs, eliminate some compiler and wipro checker warnings

This commit is contained in:
rbdannenberg
2010-09-27 05:42:28 +00:00
parent c159d469d6
commit f37b4ab344
10 changed files with 76 additions and 11 deletions

View File

@@ -72,10 +72,10 @@ void xlungetc(LVAL fptr, int ch)
/* check for ungetc from nil */
if (fptr == NIL)
; //ANSWER-ME: Return? "else if"?
;
/* otherwise, check for ungetc to a stream */
if (ustreamp(fptr)) {
else if (ustreamp(fptr)) {
if (ch != EOF) {
lptr = cons(cvchar(ch),gethead(fptr));
if (gethead(fptr) == NIL)