summaryrefslogtreecommitdiffstats
path: root/interface.h
diff options
context:
space:
mode:
authorKarsten Keil2008-09-02 02:02:11 +0200
committerKarsten Keil2008-09-02 02:02:11 +0200
commit08aad9a8c5ad279759e0a870b1dd0d8159ce3444 (patch)
tree90dded99cc57d2149905871ecc6bfa1ece6fe701 /interface.h
parentFix 64bit build (diff)
downloadlcr-08aad9a8c5ad279759e0a870b1dd0d8159ce3444.tar.gz
lcr-08aad9a8c5ad279759e0a870b1dd0d8159ce3444.tar.xz
lcr-08aad9a8c5ad279759e0a870b1dd0d8159ce3444.zip
Fix lot of warnings
Diffstat (limited to 'interface.h')
-rw-r--r--interface.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/interface.h b/interface.h
index d80d9b2..1c713a8 100644
--- a/interface.h
+++ b/interface.h
@@ -97,11 +97,11 @@ struct interface {
};
struct interface_param {
- char *name;
+ const char *name;
/* return value (pointer of function)(args ...) */
int (*func)(struct interface *, char *, int, char *, char*);
- char *usage;
- char *help;
+ const char *usage;
+ const char *help;
};