test-reconnect: Fix a warning.
authorAlex Wang <alexw@nicira.com>
Fri, 4 Apr 2014 16:58:28 +0000 (09:58 -0700)
committerAlex Wang <alexw@nicira.com>
Fri, 4 Apr 2014 17:22:01 +0000 (10:22 -0700)
This commit fixes the "return discards 'const' qualifier
from pointer target type" warning issued when compiling
test-reconnect.c.

Signed-off-by: Alex Wang <alexw@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
tests/test-reconnect.c

index 2864051..35d5f41 100644 (file)
@@ -36,7 +36,7 @@ static int now;
 static void diff_stats(const struct reconnect_stats *old,
                        const struct reconnect_stats *new,
                        int delta);
-static struct command *get_all_commands(void);
+static const struct command *get_all_commands(void);
 
 static void
 test_reconnect_main(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
@@ -289,7 +289,7 @@ static const struct command all_commands[] = {
     { NULL, 0, 0, NULL },
 };
 
-static struct command *
+static const struct command *
 get_all_commands(void)
 {
     return all_commands;