Skip to content

Commit 2d8a410

Browse files
committed
lint
1 parent 3a3e908 commit 2d8a410

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/api.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ Module["onRuntimeInitialized"] = function onRuntimeInitialized() {
560560
this.pos += 1;
561561
}
562562
var blobptr = _malloc(array.length);
563-
writeArrayToMemory(array, blobptr)
563+
writeArrayToMemory(array, blobptr);
564564
this.allocatedmem.push(blobptr);
565565
this.db.handleError(sqlite3_bind_blob(
566566
this.stmt,
@@ -1200,7 +1200,7 @@ Module["onRuntimeInitialized"] = function onRuntimeInitialized() {
12001200
sqlite3_result_null(cx);
12011201
} else if (result.length != null) {
12021202
var blobptr = _malloc(result.length);
1203-
writeArrayToMemory(result, blobptr)
1203+
writeArrayToMemory(result, blobptr);
12041204
sqlite3_result_blob(cx, blobptr, result.length, -1);
12051205
_free(blobptr);
12061206
} else {

0 commit comments

Comments
 (0)