浏览代码

Currect Duktape version string

bel2125 8 年之前
父节点
当前提交
30f1d886ee
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/civetweb.c

+ 1 - 1
src/civetweb.c

@@ -14670,7 +14670,7 @@ mg_get_system_info_impl(char *buffer, int buflen)
 		            "JavaScript: Duktape %u.%u.%u%s",
 		            (unsigned)DUK_VERSION / 10000,
 		            ((unsigned)DUK_VERSION / 100) % 100,
-		            (unsigned)DUK_VERSION % 10000,
+		            (unsigned)DUK_VERSION % 100,
 		            eol);
 		system_info_length += (int)strlen(block);
 		if (system_info_length < buflen) {