From 074af5d16c2620fdd16a174cef3059bca50f4614 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Fri, 3 Jan 2020 14:56:13 +1100 Subject: [PATCH] [c-host] init platform app struct --- VERSION | 2 +- c-host/platform/Linux/src/platform.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index 23de0444..3aabc7bc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -B1-44-gc5baf212c8+1 \ No newline at end of file +B1-45-g89d6ea0b5d+1 \ No newline at end of file diff --git a/c-host/platform/Linux/src/platform.c b/c-host/platform/Linux/src/platform.c index 2313c618..cd953f3c 100644 --- a/c-host/platform/Linux/src/platform.c +++ b/c-host/platform/Linux/src/platform.c @@ -29,10 +29,10 @@ Place, Suite 330, Boston, MA 02111-1307 USA struct app { - const char * executable; + const char * executable; }; -struct app app; +struct app app = { 0 }; int main(int argc, char * argv[]) {