summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/librcscripts/api/debug.h')
-rw-r--r--src/core/librcscripts/api/debug.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/librcscripts/api/debug.h b/src/core/librcscripts/api/debug.h
index a0b798f..14e3dc6 100644
--- a/src/core/librcscripts/api/debug.h
+++ b/src/core/librcscripts/api/debug.h
@@ -87,15 +87,15 @@ inline bool check_fp (FILE * fp);
*/
inline bool __check_arg_ptr (const void *ptr, const char *file, const char *func,
- size_t line);
+ size_t line);
inline bool __check_arg_str (const char *str, const char *file, const char *func,
- size_t line);
+ size_t line);
inline bool __check_arg_strv (char **str, const char *file, const char *func,
- size_t line);
+ size_t line);
inline bool __check_arg_fd (int fd, const char *file, const char *func,
- size_t line);
+ size_t line);
inline bool __check_arg_fp (FILE * fp, const char *file, const char *func,
- size_t line);
+ size_t line);
#define check_arg_ptr(_ptr) \
__check_arg_ptr (_ptr, __FILE__, __FUNCTION__, __LINE__)