aboutsummaryrefslogtreecommitdiff
path: root/src/test_multiplex.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/test_multiplex.c')
-rw-r--r--src/test_multiplex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test_multiplex.c b/src/test_multiplex.c
index 62b4902a8..a3b3e2f27 100644
--- a/src/test_multiplex.c
+++ b/src/test_multiplex.c
@@ -650,7 +650,7 @@ static int multiplexDelete(
/* If the main chunk was deleted successfully, also delete any subsequent
** chunks - starting with the last (highest numbered).
*/
- int nName = strlen(zName);
+ int nName = (int)strlen(zName);
char *z;
z = sqlite3_malloc(nName + 5);
if( z==0 ){