diff options
author | José Fonseca <jfonseca@vmware.com> | 2013-11-13 14:42:27 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2013-11-13 14:42:27 +0000 |
commit | ff01f1f5711b8cc6ba6730ab944b7ded446be0e5 (patch) | |
tree | 71dc378034c04fad79ac73bdeb05a16ef1da266d /dispatch | |
parent | 0bacf23eacd15c8f15413b85bdcb6ccc4d288f37 (diff) |
compat: Don't put static keyword to __inline macro.
It will create problems when if `static __inline` appears.
Diffstat (limited to 'dispatch')
-rw-r--r-- | dispatch/compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dispatch/compat.h b/dispatch/compat.h index 3fc97305..6f55ca54 100644 --- a/dispatch/compat.h +++ b/dispatch/compat.h @@ -725,7 +725,7 @@ #ifndef __inline -#define __inline static __inline__ +#define __inline __inline__ #endif #ifndef DECLSPEC_DEPRECATED |