From c71117e33181ee72d44d7b9c379046d0f5d1f835 Mon Sep 17 00:00:00 2001 From: daniel Date: Tue, 20 May 2014 21:39:43 +0900 Subject: Fix the compile error I introduced by calling initFlashValues before it's declared --- flash.c | 1 + 1 file changed, 1 insertion(+) diff --git a/flash.c b/flash.c index 48470bb..3e93b64 100644 --- a/flash.c +++ b/flash.c @@ -44,6 +44,7 @@ typedef struct { int numbytes; } userflashjob; +static void initFlashValues(FlashStruct *mem); static bool alive = true; static GMutex writermutex; -- cgit