From bda52fd0e07103924b0cf402a2bab3ee498089f6 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 12 Dec 2008 14:56:57 -0800 Subject: [PATCH] Fix mangled header guards in ofp-print.h. --- lib/ofp-print.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ofp-print.h b/lib/ofp-print.h index 76ff9248..b71212cd 100644 --- a/lib/ofp-print.h +++ b/lib/ofp-print.h @@ -33,8 +33,8 @@ /* OpenFlow protocol pretty-printer. */ -#ifndef __OFP_PRINT_H__ -#define __OFP_ORINT_H __1 +#ifndef OFP_PRINT_H +#define OFP_PRINT_H 1 #include @@ -54,4 +54,4 @@ char *ofp_packet_to_string(const void *data, size_t len, size_t total_len); } #endif -#endif /* ofppp.h */ +#endif /* ofp-print.h */ -- 2.30.2