Ignore:
Timestamp:
Jan 1, 2009 10:08:21 PM (15 years ago)
Author:
bennylp
Message:

Fixed gcc-4.3.2 warnings with the warn_unused_result flag in some APIs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjnath/src/pjturn-srv/main.c

    r2394 r2408  
    109109        menu(); 
    110110             
    111         fgets(line, sizeof(line), stdin); 
     111        if (fgets(line, sizeof(line), stdin) == NULL) 
     112            break; 
    112113 
    113114        switch (line[0]) { 
Note: See TracChangeset for help on using the changeset viewer.