From: batt Date: Fri, 9 Dec 2011 21:21:09 +0000 (+0000) Subject: Make kfile_test global variables static in order to avoid name overlap. X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=3a982dd4047b2cfe48c339d225813b95883ed19c;p=bertos.git Make kfile_test global variables static in order to avoid name overlap. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@5180 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/io/kfile_test.c b/bertos/io/kfile_test.c index 16d6bc16..5661fd23 100644 --- a/bertos/io/kfile_test.c +++ b/bertos/io/kfile_test.c @@ -63,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.