summaryrefslogtreecommitdiffstats
path: root/cause.h
diff options
context:
space:
mode:
authorKarsten Keil2008-08-29 13:13:03 +0200
committerKarsten Keil2008-08-29 13:13:03 +0200
commit69fd5e0ae9a26c8aad0acf475972cb329337b137 (patch)
treedf658750f733e3fd43ec298434b2d36f2e7f7e1e /cause.h
parentchan_lcr: fixed lcr_fixup (compare with chan_misdn for reference) (diff)
downloadlcr-69fd5e0ae9a26c8aad0acf475972cb329337b137.tar.gz
lcr-69fd5e0ae9a26c8aad0acf475972cb329337b137.tar.xz
lcr-69fd5e0ae9a26c8aad0acf475972cb329337b137.zip
Fix conversion string warnings, there are lot more like these.
Diffstat (limited to 'cause.h')
-rw-r--r--cause.h8
1 files changed, 4 insertions, 4 deletions
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];