Skip to content

Commit 8030ba6

Browse files
committed
Format void** to void **
1 parent 79642e2 commit 8030ba6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src-input/duk_util.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,7 @@ DUK_INTERNAL_DECL duk_size_t duk_encode_pointer_cstr(char* buf, duk_size_t sz, v
763763
*
764764
* Returns: 0 if parsing failed, 1 if parsing is successful.
765765
*/
766-
DUK_INTERNAL_DECL int duk_decode_pointer_cstr(const char* buf, duk_size_t sz, void** ptr);
766+
DUK_INTERNAL_DECL int duk_decode_pointer_cstr(const char* buf, duk_size_t sz, void **ptr);
767767
#endif
768768

769769
#endif /* DUK_UTIL_H_INCLUDED */

src-input/duk_util_misc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ DUK_INTERNAL duk_size_t duk_encode_pointer_cstr(char* buf, duk_size_t sz, void *
220220
}
221221

222222
#if defined(DUK_USE_JX)
223-
DUK_INTERNAL int duk_decode_pointer_cstr(const char* buf, duk_size_t sz, void** ptr) {
223+
DUK_INTERNAL int duk_decode_pointer_cstr(const char* buf, duk_size_t sz, void **ptr) {
224224
#if defined(DUK_USE_MEMBASED_POINTER_ENCODING)
225225
duk_size_t i;
226226
union duk_ptr_access ptraccess;

0 commit comments

Comments
 (0)