diff options
| author | Markus Armbruster | 2016-06-29 13:47:03 +0200 |
|---|---|---|
| committer | Markus Armbruster | 2016-07-12 16:20:46 +0200 |
| commit | 2a6a4076e117113ebec97b1821071afccfdfbc96 (patch) | |
| tree | 349b8c30ac34fa345b5ce59aa1f4271dfe1a6543 /ui/vnc.h | |
| parent | libdecnumber: Don't error out on decNumberLocal.h re-inclusion (diff) | |
| download | qemu-2a6a4076e117113ebec97b1821071afccfdfbc96.tar.gz qemu-2a6a4076e117113ebec97b1821071afccfdfbc96.tar.xz qemu-2a6a4076e117113ebec97b1821071afccfdfbc96.zip | |
Clean up ill-advised or unusual header guards
Cleaned up with scripts/clean-header-guards.pl.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'ui/vnc.h')
| -rw-r--r-- | ui/vnc.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -24,8 +24,8 @@ * THE SOFTWARE. */ -#ifndef __QEMU_VNC_H -#define __QEMU_VNC_H +#ifndef QEMU_VNC_H +#define QEMU_VNC_H #include "qemu-common.h" #include "qemu/queue.h" @@ -577,4 +577,4 @@ int vnc_zrle_send_framebuffer_update(VncState *vs, int x, int y, int w, int h); int vnc_zywrle_send_framebuffer_update(VncState *vs, int x, int y, int w, int h); void vnc_zrle_clear(VncState *vs); -#endif /* __QEMU_VNC_H */ +#endif /* QEMU_VNC_H */ |
