diff options
author | Keith Packard <keithp@keithp.com> | 2013-12-11 12:18:16 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-01-12 10:14:51 -0800 |
commit | 319dff750f99a28a1544bcb81d52172c641ad1ca (patch) | |
tree | 4e4cdc1e76bef928069662142f8530868eb0fda6 /hw | |
parent | 7915791bac3ff609e94f355fbb637d7c570a5b32 (diff) |
hw/xfree86: nobus.c shouldn't define a static function
Having this function be static generates a compiler warning.
Signed-off-by: Keith Packard <keithp@keithp.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/xfree86/os-support/bus/nobus.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hw/xfree86/os-support/bus/nobus.c b/hw/xfree86/os-support/bus/nobus.c index dc36ecd0a..4872c5be8 100644 --- a/hw/xfree86/os-support/bus/nobus.c +++ b/hw/xfree86/os-support/bus/nobus.c @@ -1,4 +1,7 @@ -static void +void +__noop_to_appease_ar__(void); + +void __noop_to_appease_ar__(void) { return; |