From 7d02cdd1c22a76d827f390314cb016d597c8f1ce Mon Sep 17 00:00:00 2001 From: "bjorn%netscape.com" Date: Thu, 15 Oct 1998 21:06:57 +0000 Subject: [PATCH] changed from int to unsigned int in alignment code. git-svn-id: svn://10.0.0.236/branches/SpiderMonkey140_BRANCH@12921 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/js/src/jsatom.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mozilla/js/src/jsatom.c b/mozilla/js/src/jsatom.c index 7cee6d2afaf..33911ce1bdf 100644 --- a/mozilla/js/src/jsatom.c +++ b/mozilla/js/src/jsatom.c @@ -403,8 +403,8 @@ js_AtomizeDouble(JSContext *cx, jsdouble d, uintN flags) JSAtom *atom; #define AlignNum (1<= sizeof(double)); #undef AlignNum dp = (jsdouble *)&alignbuf[xtra]; @@ -513,8 +513,8 @@ js_Atomize(JSContext *cx, const char *bytes, size_t length, uintN flags) JSAtom *atom; #define AlignNum (1<= sizeof(double)); #undef AlignNum str = (JSString *)&alignbuf[xtra]; @@ -535,8 +535,8 @@ js_AtomizeChars(JSContext *cx, const jschar *chars, size_t length, uintN flags) JSString *str; #define AlignNum (1<= sizeof(double)); #undef AlignNum str = (JSString *)&alignbuf[xtra];