From b1b85404f9d15ad6b7b5a61d9acf94f24508ff7d Mon Sep 17 00:00:00 2001 From: Patrick Grimm Date: Tue, 25 Oct 2016 15:56:57 +0200 Subject: [PATCH] [r3063] Merged revision(s) 3061 from branches/releases/bacnet-stack-0-8-0: Fixed typedef so that uses of it are const. ........ Author: skarg@r3063 --- include/indtext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/indtext.h b/include/indtext.h index 4c53b0e..ee9f8c3 100644 --- a/include/indtext.h +++ b/include/indtext.h @@ -29,7 +29,7 @@ #include /* index and text pairs */ -const typedef struct { +typedef const struct { const unsigned index; /* index number that matches the text */ const char *pString; /* text pair - use NULL to end the list */ } INDTEXT_DATA;