Commit ec9390dc4e03afe21ae56457624c04213ffcb45d

Con Kolivas 2013-04-15T10:19:37

Variable is already initialised in global scope.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/api-example.c b/api-example.c
index 9bd4479..71b5b00 100644
--- a/api-example.c
+++ b/api-example.c
@@ -145,7 +145,7 @@
 static const char SEPARATOR = '|';
 static const char COMMA = ',';
 static const char EQ = '=';
-static int ONLY = 0;
+static int ONLY;
 
 void display(char *buf)
 {