From a92f3b946a7800d4c65f35da331b4ca6f3573219 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Thu, 4 Aug 2022 05:59:44 +0700 Subject: [PATCH] csn1: use #pragma once in csn1.h Change-Id: Ieb739a1166d297336705ec693668c9d49506089c --- include/osmocom/csn1/csn1.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/include/osmocom/csn1/csn1.h b/include/osmocom/csn1/csn1.h index 47956c3..114ed16 100644 --- a/include/osmocom/csn1/csn1.h +++ b/include/osmocom/csn1/csn1.h @@ -21,8 +21,7 @@ * GNU General Public License for more details. */ -#ifndef _PACKET_CSN1_H_ -#define _PACKET_CSN1_H_ +#pragma once #include #include "wireshark_compat.h" @@ -611,5 +610,3 @@ gint16 ProcessError_impl(const char *file, int line, unsigned *readIndex, const char* sz, gint16 err, const CSN_DESCR* pDescr); #define ProcessError(readIndex, sz, err, pDescr) \ ProcessError_impl(__FILE__, __LINE__, readIndex, sz, err, pDescr) - -#endif /*_PACKET_CSN1_H_*/