Silence warning when testing.
[bertos.git] / bertos / kern / kfile.c
index 6a8cb2042333783c6155406df263905afcc79ecc..5a44019d6914148c4e0a888419aea6b6905e9947 100644 (file)
@@ -196,10 +196,10 @@ kfile_off_t kfile_genericSeek(struct KFile *fd, kfile_off_t offset, KSeekMode wh
        }
 
        #if LOG_LEVEL >= LOG_LVL_INFO
-    /* Bound check */
+       /* Bound check */
        if (seek_pos + offset > fd->size)
                LOG_INFO("seek outside EOF\n");
-    #endif
+       #endif
 
        fd->seek_pos = seek_pos + offset;