diff options
author | Juan Quintela | 2009-09-23 01:19:00 +0200 |
---|---|---|
committer | Blue Swirl | 2009-09-25 21:51:45 +0200 |
commit | 86178a576b83e6687e8f67ed7de4255a5c30cf05 (patch) | |
tree | 2b5904df7cd31491006baf0d968f64bd927954a8 /hw/g364fb.c | |
parent | Use proper typedef syntax (diff) | |
download | qemu-86178a576b83e6687e8f67ed7de4255a5c30cf05.tar.gz qemu-86178a576b83e6687e8f67ed7de4255a5c30cf05.tar.xz qemu-86178a576b83e6687e8f67ed7de4255a5c30cf05.zip |
static and inline should came before the type of the functions
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/g364fb.c')
-rw-r--r-- | hw/g364fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/g364fb.c b/hw/g364fb.c index d44fcc2d28..88e304823e 100644 --- a/hw/g364fb.c +++ b/hw/g364fb.c @@ -268,7 +268,7 @@ static void g364fb_update_display(void *opaque) qemu_irq_raise(s->irq); } -static void inline g364fb_invalidate_display(void *opaque) +static inline void g364fb_invalidate_display(void *opaque) { G364State *s = opaque; int i; |