From: j_mayer Date: Mon, 5 Nov 2007 13:16:23 +0000 (+0000) Subject: Fix muls64 prototype to match the actual implementation. X-Git-Tag: xen-3.3.0-rc1~822 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=05e1d83049e295383d40c5d9015c0e0f0f672baf;p=qemu-xen-3.3-testing.git Fix muls64 prototype to match the actual implementation. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3537 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/host-utils.h b/host-utils.h index 234a0621..dafd0329 100644 --- a/host-utils.h +++ b/host-utils.h @@ -41,7 +41,7 @@ static always_inline void muls64 (uint64_t *plow, uint64_t *phigh, : "a" (a), "0" (b)); } #else -void muls64(int64_t *phigh, int64_t *plow, int64_t a, int64_t b); +void muls64(uint64_t *phigh, uint64_t *plow, int64_t a, int64_t b); void mulu64(uint64_t *phigh, uint64_t *plow, uint64_t a, uint64_t b); #endif