From 2d37de773c4a19836e1d7738f16353b7e258eb2b Mon Sep 17 00:00:00 2001 From: Piotr Esden-Tempski Date: Wed, 19 Oct 2016 14:36:27 -0700 Subject: [PATCH] Fixed #include guard. --- src/platforms/common/timing.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/platforms/common/timing.h b/src/platforms/common/timing.h index 39b58e5..cc7971e 100644 --- a/src/platforms/common/timing.h +++ b/src/platforms/common/timing.h @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -#ifndef __TIMING__H +#ifndef __TIMING_H #define __TIMING_H struct platform_timeout { @@ -26,5 +26,5 @@ struct platform_timeout { uint32_t platform_time_ms(void); -#endif +#endif /* __TIMING_H */