summaryrefslogtreecommitdiff
path: root/src/string_list.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/string_list.h')
-rw-r--r--src/string_list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string_list.h b/src/string_list.h
index 1d9c2a36..8dfe0b83 100644
--- a/src/string_list.h
+++ b/src/string_list.h
@@ -13,7 +13,7 @@ extern "C" {
typedef struct string_list string_list;
struct string_list {
/* The string list owns the string */
- cptr s;
+ char *s;
/* Next */
string_list *next;
};