From bc91b98ea1205d7a68189090f4d8b3faf63b1509 Mon Sep 17 00:00:00 2001 From: Bobby Holley Date: Wed, 22 May 2013 10:05:28 -0600 Subject: [PATCH] Bug 868130 - Fix include guard. r=me --- js/xpconnect/src/nsCxPusher.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/xpconnect/src/nsCxPusher.h b/js/xpconnect/src/nsCxPusher.h index 7906efe6e16..f9da9c16abb 100644 --- a/js/xpconnect/src/nsCxPusher.h +++ b/js/xpconnect/src/nsCxPusher.h @@ -1,8 +1,8 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ -#ifndef nsCxPusher_h___ -#define nsCxPusher_h___ +#ifndef nsCxPusher_h +#define nsCxPusher_h #include "jsapi.h" #include "mozilla/Util.h" @@ -111,4 +111,4 @@ public: } // namespace mozilla -#endif /* nsCxPusher_h___ */ +#endif /* nsCxPusher_h */