mactime: fix handle_get_mactime fcn prototype 54/22854/1
authorDave Barach <dave@barachs.net>
Fri, 18 Oct 2019 15:31:20 +0000 (11:31 -0400)
committerDave Barach <dave@barachs.net>
Fri, 18 Oct 2019 15:36:17 +0000 (11:36 -0400)
Type: fix

Signed-off-by: Dave Barach <dave@barachs.net>
Change-Id: I9576ade941b10d1605f6c6714f312ae2a8ad5065

src/plugins/mactime/builtins.c

index a0d7b5f..906164e 100644 (file)
@@ -5,7 +5,8 @@
 #include <vlib/unix/plugin.h>
 
 static int
-handle_get_mactime (u8 * request, http_session_t * hs)
+handle_get_mactime (http_builtin_method_type_t reqtype,
+                   u8 * request, http_session_t * hs)
 {
   mactime_main_t *mm = &mactime_main;
   mactime_device_t *dp;
@@ -24,9 +25,9 @@ handle_get_mactime (u8 * request, http_session_t * hs)
   vec_reset_length (mm->arp_cache_copy);
   pool = ip4_neighbors_pool ();
 
-  pool_foreach (n, pool, (
-                          {
-                          vec_add1 (mm->arp_cache_copy, n[0]);}));
+  /* *INDENT-OFF* */
+  pool_foreach (n, pool, ({ vec_add1 (mm->arp_cache_copy, n[0]);}));
+  /* *INDENT-ON* */
 
   now = clib_timebase_now (&mm->timebase);