diff options
Diffstat (limited to 'com32/lib/sys/vesa/screencpy.c')
-rw-r--r-- | com32/lib/sys/vesa/screencpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/lib/sys/vesa/screencpy.c b/com32/lib/sys/vesa/screencpy.c index b66e8854..9740ea14 100644 --- a/com32/lib/sys/vesa/screencpy.c +++ b/com32/lib/sys/vesa/screencpy.c @@ -43,7 +43,7 @@ static struct win_info { static inline int __constfunc ilog2(unsigned int x) { -asm("bsrl %1,%0": "=r"(x):"rm"(x)); + asm("bsrl %1,%0" : "=r"(x) : "rm"(x)); return x; } |