diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/libbb.h b/include/libbb.h index 99a9422f0..ed1c41a02 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -123,8 +123,8 @@ | |||
123 | 123 | ||
124 | /* This structure defines protocol families and their handlers. */ | 124 | /* This structure defines protocol families and their handlers. */ |
125 | struct aftype { | 125 | struct aftype { |
126 | char *name; | 126 | const char *name; |
127 | char *title; | 127 | const char *title; |
128 | int af; | 128 | int af; |
129 | int alen; | 129 | int alen; |
130 | char *(*print) (unsigned char *); | 130 | char *(*print) (unsigned char *); |
@@ -143,8 +143,8 @@ struct aftype { | |||
143 | 143 | ||
144 | /* This structure defines hardware protocols and their handlers. */ | 144 | /* This structure defines hardware protocols and their handlers. */ |
145 | struct hwtype { | 145 | struct hwtype { |
146 | char *name; | 146 | const char *name; |
147 | char *title; | 147 | const char *title; |
148 | int type; | 148 | int type; |
149 | int alen; | 149 | int alen; |
150 | char *(*print) (unsigned char *); | 150 | char *(*print) (unsigned char *); |