diff options
| author | gkostka <kostka.grzegorz@gmail.com> | 2014-06-03 10:10:18 +0000 |
|---|---|---|
| committer | gkostka <kostka.grzegorz@gmail.com> | 2014-06-03 10:10:18 +0000 |
| commit | 4f30abc8be7aeebd0e2276623d37598b0ad626e4 (patch) | |
| tree | f5a2c01f00030a5cfe26f1cfcd33d32d3a01184b /fs_test | |
| parent | a997419af0b0974abce6cd984e3256776dde8c3f (diff) | |
Fix errno warning.
Fix generic demo return values.
Diffstat (limited to 'fs_test')
| -rw-r--r-- | fs_test/lwext4_server.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs_test/lwext4_server.c b/fs_test/lwext4_server.c index 27024ff..aae14e1 100644 --- a/fs_test/lwext4_server.c +++ b/fs_test/lwext4_server.c @@ -26,7 +26,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <errno.h>
+
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
@@ -53,6 +53,7 @@ #include <io_raw.h>
#include <ext4.h>
+#include <errno.h>
static int winsock_init(void);
static void winsock_fini(void);
|
