Minor fix.
[bertos.git] / bertos / io / kfile_test.c
index 410243e6bb97bc73b00c7ab71d2daf534c7b5553..5661fd230cf7885da9f82c1ab7fd3cebf0df49d4 100644 (file)
@@ -34,7 +34,6 @@
  *
  * This module implements a test for some generic I/O interfaces for kfile.
  *
- * \version $Id$
  * \author Francesco Sacchi <batt@develer.com>
  * \author Daniele Basile <asterix@develer.com>
  */
@@ -64,11 +63,11 @@ MOD_DEFINE(kfile_test);
 #define BUF_TEST_LEN     3209
 
 // Buffer for test
-uint8_t test_buf[BUF_TEST_LEN];
-uint8_t test_buf_save[BUF_TEST_LEN];
+static uint8_t test_buf[BUF_TEST_LEN];
+static uint8_t test_buf_save[BUF_TEST_LEN];
 
-uint8_t test_disk[BUF_TEST_LEN];
-KFileMem mem;
+static uint8_t test_disk[BUF_TEST_LEN];
+static KFileMem mem;
 
 /*
  * Help function to init disk and the buffers.