Skip to content
Snippets Groups Projects
Commit d6f98d8b authored by rswindell's avatar rswindell
Browse files

Accidentally used SHORT instead of WORD (gcc/linux no likey).

parent 02c49031
Branches
Tags
No related merge requests found
......@@ -436,7 +436,7 @@ js_writebin(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
wr=fwrite(&b,1,size,p->fp);
break;
case sizeof(WORD):
w = (SHORT)JSVAL_TO_INT(argv[0]);
w = (WORD)JSVAL_TO_INT(argv[0]);
wr=fwrite(&w,1,size,p->fp);
break;
case sizeof(DWORD):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment