about summary refs log tree commit diff stats
path: root/src/common.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-01-16 23:12:00 +0000
committerJames Booth <boothj5@gmail.com>2015-01-16 23:12:00 +0000
commit972d524fdcbcf7d706f5970853180a856ff044b8 (patch)
tree613b1a215ede3314cd4600783550baf849dda7ce /src/common.c
parent9fad03af747a2345fa3da7d071a6acd1017d204b (diff)
parent4c6cfcdca0f7aec1f0e3243a60d88ed494357a5d (diff)
downloadprofani-tty-972d524fdcbcf7d706f5970853180a856ff044b8.tar.gz
Merge branch 'master' into inp-utf8
Diffstat (limited to 'src/common.c')
-rw-r--r--src/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.c b/src/common.c
index ffd12899..0f7693e9 100644
--- a/src/common.c
+++ b/src/common.c
@@ -191,7 +191,7 @@ str_replace(const char *string, const char *substr,
 }
 
 int
-str_contains(char str[], int size, char ch)
+str_contains(const char str[], int size, char ch)
 {
     int i;
     for (i = 0; i < size; i++) {