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:
@@ -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)
|
||||
|
Reference in New Issue
Block a user