summaryrefslogtreecommitdiff
path: root/src/utilfuns/roman.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utilfuns/roman.cpp')
-rw-r--r--src/utilfuns/roman.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utilfuns/roman.cpp b/src/utilfuns/roman.cpp
index d436b19..031d58a 100644
--- a/src/utilfuns/roman.cpp
+++ b/src/utilfuns/roman.cpp
@@ -2,7 +2,7 @@
*
* roman.cpp -
*
- * $Id: roman.cpp 2980 2013-09-14 21:51:47Z scribe $
+ * $Id: roman.cpp 3439 2016-10-23 08:32:02Z scribe $
*
* Copyright 2002-2013 CrossWire Bible Society (http://www.crosswire.org)
* CrossWire Bible Society
@@ -37,7 +37,7 @@ char isroman (const char *str, int maxchars) {
}
int from_rom(const char* str) {
- int i, n = strlen(str);
+ int i, n = (int)strlen(str);
short * num= (short *) calloc(n, sizeof(short));
for (i = 0; str[i]; i++) {
switch(str[i]) {