diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-05-20 19:24:34 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-05-27 19:52:10 -0700 |
commit | bc04065b5ce277f3ac3491ff221a60ef3c7605cf (patch) | |
tree | d3322ca0acd9b76109c3dc23953b36644835ed40 | |
parent | eadf5021794782fde861d471ed408675f4926b89 (diff) |
"privates.h", line 198: warning: void function cannot return value
Providing an argument to return in a function with void return type
is not allowed by the C standard, and makes the Sun compilers unhappy.
(They actually flag it as an error, unless using a new enough version
to be able to downgrade it to a warning with "-features=extensions".)
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
Reviewed-by: Daniel Stone <daniel@fooishbar.org>
Reviewed-by: Cyril Brulebois <kibi@debian.org>
-rw-r--r-- | include/privates.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/privates.h b/include/privates.h index 7ef2cb732..2b0040cba 100644 --- a/include/privates.h +++ b/include/privates.h @@ -195,7 +195,7 @@ dixGetScreenPrivate(PrivatePtr *privates, const DevScreenPrivateKey key, ScreenP static inline void dixSetScreenPrivate(PrivatePtr *privates, const DevScreenPrivateKey key, ScreenPtr pScreen, pointer val) { - return dixSetPrivate(privates, _dixGetScreenPrivateKey(key, pScreen), val); + dixSetPrivate(privates, _dixGetScreenPrivateKey(key, pScreen), val); } static inline pointer |