summaryrefslogtreecommitdiff
path: root/src/stmd.h
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-10-24 19:09:59 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2014-10-24 19:09:59 -0700
commit511e92f39fe9bdca51bea3ee0add95a6eca880f5 (patch)
tree399aec9d6bca17da43b99f7be66506408132a9a6 /src/stmd.h
parente8639baa2d91b653859fd8a3643c9c3127f0cece (diff)
Use unsigned char, not char, throughout.
Closes #43.
Diffstat (limited to 'src/stmd.h')
-rw-r--r--src/stmd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stmd.h b/src/stmd.h
index c6473a6..552e60e 100644
--- a/src/stmd.h
+++ b/src/stmd.h
@@ -56,7 +56,7 @@ struct ListData {
struct FencedCodeData {
int fence_length;
int fence_offset;
- char fence_char;
+ unsigned char fence_char;
strbuf info;
};