diff options
author | felixs <felixs@4a8a32a2-be11-0410-ad9d-d568d2c75423> | 2022-10-25 13:25:25 +0000 |
---|---|---|
committer | felixs <felixs@4a8a32a2-be11-0410-ad9d-d568d2c75423> | 2022-10-25 13:25:25 +0000 |
commit | 5c6380f1fdde2be7fda9bec2c58bb8ad1da99a8c (patch) | |
tree | c9f8707d75c0577be857ad3a22552a492c966be7 /support/cpp/gcc | |
parent | f8b513c37e4d36e709165c88369689ee1a13aaf8 (diff) |
cpp: Fix argument type in dummy, #3492.
git-svn-id: http://svn.code.sourceforge.net/p/sdcc/code/trunk/sdcc@13738 4a8a32a2-be11-0410-ad9d-d568d2c75423
Diffstat (limited to 'support/cpp/gcc')
-rw-r--r-- | support/cpp/gcc/cc1_dummies.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/cpp/gcc/cc1_dummies.cc b/support/cpp/gcc/cc1_dummies.cc index 0a9e21b6a..acccc7500 100644 --- a/support/cpp/gcc/cc1_dummies.cc +++ b/support/cpp/gcc/cc1_dummies.cc @@ -162,7 +162,7 @@ bool lang_GNU_C() { return true; } -void lhd_append_data(void const*, unsigned long, void*) +void lhd_append_data(void const*, size_t, void*) { SDCPP_DUMMY_FCT(); } void lhd_begin_section(char const*) |