diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-12-22 15:53:15 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-12-22 15:53:15 -0800 |
commit | 8ffb2010dbd583ebd3f7224831dca2454c9ff162 (patch) | |
tree | f1eab1c3571fc26b107f0611e112f973557d59c4 /com32/lib/sys/vesa/screencpy.c | |
parent | 46202699d83202808e67358739d1889982c825ae (diff) | |
download | syslinux-8ffb2010dbd583ebd3f7224831dca2454c9ff162.tar.gz syslinux-8ffb2010dbd583ebd3f7224831dca2454c9ff162.tar.xz syslinux-8ffb2010dbd583ebd3f7224831dca2454c9ff162.zip |
vesa: formatting fix
Code formatting fix in screencpy.c
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
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; } |