From 3a982dd4047b2cfe48c339d225813b95883ed19c Mon Sep 17 00:00:00 2001 From: batt Date: Fri, 9 Dec 2011 21:21:09 +0000 Subject: [PATCH] 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 --- bertos/io/kfile_test.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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. -- 2.25.1