diff options
author | nfullagar@chromium.org <nfullagar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-15 11:46:35 +0000 |
---|---|---|
committer | nfullagar@chromium.org <nfullagar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-15 11:46:35 +0000 |
commit | e4a47421a27d0a1aff70f178a7c30b00cbb78b60 (patch) | |
tree | cc8e51a3e94fe9ed88f0815c96c6d08f09d1a262 /ppapi/c/pp_var.h | |
parent | 171878968febd54b0c378257104e4c4130bfcf67 (diff) | |
download | chromium_src-e4a47421a27d0a1aff70f178a7c30b00cbb78b60.zip chromium_src-e4a47421a27d0a1aff70f178a7c30b00cbb78b60.tar.gz chromium_src-e4a47421a27d0a1aff70f178a7c30b00cbb78b60.tar.bz2 |
Hush more c compiler warnings ("function declaration isn’t a prototype")
BUG=none
TEST=trybots
Review URL: https://chromiumcodereview.appspot.com/12209108
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@182671 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c/pp_var.h')
-rw-r--r-- | ppapi/c/pp_var.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/c/pp_var.h b/ppapi/c/pp_var.h index d67b9b6..2138f93 100644 --- a/ppapi/c/pp_var.h +++ b/ppapi/c/pp_var.h @@ -3,7 +3,7 @@ * found in the LICENSE file. */ -/* From pp_var.idl modified Wed Dec 14 18:08:00 2011. */ +/* From pp_var.idl modified Mon Feb 11 15:41:10 2013. */ #ifndef PPAPI_C_PP_VAR_H_ #define PPAPI_C_PP_VAR_H_ @@ -168,7 +168,7 @@ PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_Var, 16); * * @return A <code>PP_Var</code> structure. */ -PP_INLINE struct PP_Var PP_MakeUndefined() { +PP_INLINE struct PP_Var PP_MakeUndefined(void) { struct PP_Var result = { PP_VARTYPE_UNDEFINED, 0, {PP_FALSE} }; return result; } @@ -179,7 +179,7 @@ PP_INLINE struct PP_Var PP_MakeUndefined() { * * @return A <code>PP_Var</code> structure, */ -PP_INLINE struct PP_Var PP_MakeNull() { +PP_INLINE struct PP_Var PP_MakeNull(void) { struct PP_Var result = { PP_VARTYPE_NULL, 0, {PP_FALSE} }; return result; } |