gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r11719 - libmicrohttpd/src/examples


From: gnunet
Subject: [GNUnet-SVN] r11719 - libmicrohttpd/src/examples
Date: Sun, 13 Jun 2010 11:50:07 +0200

Author: grothoff
Date: 2010-06-13 11:50:07 +0200 (Sun, 13 Jun 2010)
New Revision: 11719

Modified:
   libmicrohttpd/src/examples/fileserver_example_dirs.c
   libmicrohttpd/src/examples/https_fileserver_example.c
Log:
fix

Modified: libmicrohttpd/src/examples/fileserver_example_dirs.c
===================================================================
--- libmicrohttpd/src/examples/fileserver_example_dirs.c        2010-06-13 
09:46:12 UTC (rev 11718)
+++ libmicrohttpd/src/examples/fileserver_example_dirs.c        2010-06-13 
09:50:07 UTC (rev 11719)
@@ -35,7 +35,7 @@
 {
   FILE *file = cls;
 
-  fseek (file, pos, SEEK_SET);
+  (void) fseek (file, pos, SEEK_SET);
   return fread (buf, 1, max, file);
 }
 

Modified: libmicrohttpd/src/examples/https_fileserver_example.c
===================================================================
--- libmicrohttpd/src/examples/https_fileserver_example.c       2010-06-13 
09:46:12 UTC (rev 11718)
+++ libmicrohttpd/src/examples/https_fileserver_example.c       2010-06-13 
09:50:07 UTC (rev 11719)
@@ -101,7 +101,7 @@
 {
   FILE *file = cls;
 
-  fseek (file, pos, SEEK_SET);
+  (void) fseek (file, pos, SEEK_SET);
   return fread (buf, 1, max, file);
 }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]