summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/samples/mix.c
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2009-01-01 22:08:21 +0000
committerBenny Prijono <bennylp@teluu.com>2009-01-01 22:08:21 +0000
commite8292035968488eb3a9b61a431afc8c9a39f51d3 (patch)
tree37b6e83a23282b53ed0ab8a602498798bb56c57d /pjsip-apps/src/samples/mix.c
parent423bd3b19d5611412da90b87f6989dc89339defa (diff)
Fixed gcc-4.3.2 warnings with the warn_unused_result flag in some APIs
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2408 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip-apps/src/samples/mix.c')
-rw-r--r--pjsip-apps/src/samples/mix.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pjsip-apps/src/samples/mix.c b/pjsip-apps/src/samples/mix.c
index 6cf93a0f..f409af2b 100644
--- a/pjsip-apps/src/samples/mix.c
+++ b/pjsip-apps/src/samples/mix.c
@@ -129,7 +129,8 @@ int main(int argc, char *argv[])
printf("File %s exists, overwrite? [Y/N] ", out_fname);
fflush(stdout);
- fgets(in, sizeof(in), stdin);
+ if (fgets(in, sizeof(in), stdin) == NULL)
+ return 1;
if (pj_tolower(in[0]) != 'y')
return 1;
}