Skip to content

Commit

Permalink
Format void** to void **
Browse files Browse the repository at this point in the history
  • Loading branch information
hf committed Feb 29, 2020
1 parent 79642e2 commit 8030ba6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src-input/duk_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,7 @@ DUK_INTERNAL_DECL duk_size_t duk_encode_pointer_cstr(char* buf, duk_size_t sz, v
*
* Returns: 0 if parsing failed, 1 if parsing is successful.
*/
DUK_INTERNAL_DECL int duk_decode_pointer_cstr(const char* buf, duk_size_t sz, void** ptr);
DUK_INTERNAL_DECL int duk_decode_pointer_cstr(const char* buf, duk_size_t sz, void **ptr);
#endif

#endif /* DUK_UTIL_H_INCLUDED */
2 changes: 1 addition & 1 deletion src-input/duk_util_misc.c
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ DUK_INTERNAL duk_size_t duk_encode_pointer_cstr(char* buf, duk_size_t sz, void *
}

#if defined(DUK_USE_JX)
DUK_INTERNAL int duk_decode_pointer_cstr(const char* buf, duk_size_t sz, void** ptr) {
DUK_INTERNAL int duk_decode_pointer_cstr(const char* buf, duk_size_t sz, void **ptr) {
#if defined(DUK_USE_MEMBASED_POINTER_ENCODING)
duk_size_t i;
union duk_ptr_access ptraccess;
Expand Down

0 comments on commit 8030ba6

Please sign in to comment.