From: Karsten Keil Date: Fri, 29 Aug 2008 11:13:03 +0000 (+0200) Subject: Fix conversion string warnings, there are lot more like these. X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=commitdiff_plain;h=69fd5e0ae9a26c8aad0acf475972cb329337b137 Fix conversion string warnings, there are lot more like these. --- diff --git a/cause.h b/cause.h index 809142e..a9c8a41 100644 --- a/cause.h +++ b/cause.h @@ -38,13 +38,13 @@ #define CAUSE_UNIMPLEMENTED 79 struct isdn_cause { - char *english; - char *german; + const char *english; + const char *german; }; struct isdn_location { - char *english; - char *german; + const char *english; + const char *german; }; extern struct isdn_cause isdn_cause[128];