Module: wine Branch: master Commit: 9bf247d44eda5cb5396610c51057c8e91e24ce82 URL: http://source.winehq.org/git/wine.git/?a=commit;h=9bf247d44eda5cb5396610c510...
Author: Michael Stefaniuc mstefani@redhat.de Date: Tue Apr 5 16:18:38 2011 +0200
wininet: Move "inline" right after the storage specifier.
---
dlls/wininet/http.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/wininet/http.c b/dlls/wininet/http.c index 5258c2e..e775bc0 100644 --- a/dlls/wininet/http.c +++ b/dlls/wininet/http.c @@ -254,7 +254,7 @@ typedef struct { DWORD chunk_size; } chunked_stream_t;
-static void inline destroy_data_stream(data_stream_t *stream) +static inline void destroy_data_stream(data_stream_t *stream) { stream->vtbl->destroy(stream); }