]> git.droids-corp.org - dpdk.git/blobdiff - lib/librte_eal/common/include/rte_debug.h
doc: fix some doxygen comments
[dpdk.git] / lib / librte_eal / common / include / rte_debug.h
index e234e2ffe688b6d8f64e6a4868d295879961865a..9cd818cd40a542de1a6fd798f5cb1277b6a2a6bc 100644 (file)
@@ -75,8 +75,8 @@ void rte_dump_registers(void);
  * @param args
  *   The variable list of arguments.
  */
-#define rte_panic_(func, format, ...) __rte_panic(func, format "%.0s", __VA_ARGS__)
 #define rte_panic(...) rte_panic_(__func__, __VA_ARGS__, "dummy")
+#define rte_panic_(func, format, ...) __rte_panic(func, format "%.0s", __VA_ARGS__)
 
 #define        RTE_VERIFY(exp) do {                                                  \
        if (!(exp))                                                           \