aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-29 23:43:52 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-29 23:43:52 +0000
commit86b5dc62b34295eeb85a78082f81d113c0199a4b (patch)
tree66dcf2c776adea8556d2ebac5e3f7d8a27f05074 /include
parent1a0a65f68efe01e93ef3c083c21a77dee97ca036 (diff)
downloadbusybox-w32-86b5dc62b34295eeb85a78082f81d113c0199a4b.tar.gz
busybox-w32-86b5dc62b34295eeb85a78082f81d113c0199a4b.tar.bz2
busybox-w32-86b5dc62b34295eeb85a78082f81d113c0199a4b.zip
preparatory patch for -Wwrite-strings #6
git-svn-id: svn://busybox.net/trunk/busybox@17659 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h8
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. */
125struct aftype { 125struct 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. */
145struct hwtype { 145struct 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 *);