From 7f30efab38b48e7ea8515fa787f92fab4d08ef79 Mon Sep 17 00:00:00 2001 From: Matias Fontanini Date: Thu, 5 May 2016 12:40:11 -0700 Subject: [PATCH] Fix typo in macros.h [ci skip] --- include/tins/macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tins/macros.h b/include/tins/macros.h index 3cd6af0..e687296 100644 --- a/include/tins/macros.h +++ b/include/tins/macros.h @@ -47,7 +47,7 @@ #define TINS_LIKELY(x) (x) #define TINS_UNLIKELY(x) (x) #else - // Not Vistual Studio. Assume this is gcc compatible + // Not Visual Studio. Assume this is gcc compatible #define TINS_BEGIN_PACK #define TINS_END_PACK __attribute__((packed)) #define TINS_PACKED(DECLARATION) DECLARATION __attribute__((packed))