From 47212ee31e16c50e3c170514e1076a8651e22146 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Mon, 12 Nov 2018 13:59:29 -0800 Subject: start debug --- supervisor/shared/filesystem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'supervisor') diff --git a/supervisor/shared/filesystem.c b/supervisor/shared/filesystem.c index 264ba25f0..ebbc8c40d 100644 --- a/supervisor/shared/filesystem.c +++ b/supervisor/shared/filesystem.c @@ -50,7 +50,7 @@ void filesystem_init(bool create_allowed, bool force_create) { supervisor_flash_init_vfs(vfs_fat); // try to mount the flash - FRESULT res = f_mount(&vfs_fat->fatfs); + volatile FRESULT res = f_mount(&vfs_fat->fatfs); if ((res == FR_NO_FILESYSTEM && create_allowed) || force_create) { // No filesystem so create a fresh one, or reformat has been requested. -- cgit v1.2.3