From: Ben Pfaff Date: Fri, 12 Dec 2008 22:56:57 +0000 (-0800) Subject: Fix mangled header guards in ofp-print.h. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bda52fd0e07103924b0cf402a2bab3ee498089f6;p=openvswitch Fix mangled header guards in ofp-print.h. --- 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 */