summaryrefslogtreecommitdiff
path: root/support/cpp/libcpp/files.c
diff options
context:
space:
mode:
authormaartenbrock <maartenbrock@4a8a32a2-be11-0410-ad9d-d568d2c75423>2018-12-15 09:20:43 +0000
committermaartenbrock <maartenbrock@4a8a32a2-be11-0410-ad9d-d568d2c75423>2018-12-15 09:20:43 +0000
commit34d4f420b0a07e20ff481d6ac64b8ad6a45b4187 (patch)
treed558d9449cd333342e09a5089632fc2ed18f4aea /support/cpp/libcpp/files.c
parentb2e677ae3cbaee89c7f4df85ff1fb475abe88cce (diff)
* configure, configure.ac: changed warning into notice
* sdas/asz80/z80mch.c: cosmetic * src/sdcc.vcxproj, * src/sdcc.vcxproj.filters: added missing SDCC.lex & SDCC.y * support/cpp/libcpp/files.c, * support/cpp/libcpp/identifiers.c, * support/cpp/libcpp/init.c, * support/cpp/libcpp/symtab.c: fixed warnings for unsigned size_t * support/regression/tests/bitopcse.c: only use idata for mcs51 * support/regression/tests/gcc-torture-execute-20021120-1.c: disabled for hc08 & s08, uses way too much spillocs in DSEG * support/regression/tests/longlong.c: split the test in 3 parts * support/sdbinutils/bfd/targets.c: added "ASXXXX" * support/sdbinutils/libiberty/simple-object-elf.c: fixed warning git-svn-id: http://svn.code.sourceforge.net/p/sdcc/code/trunk/sdcc@10764 4a8a32a2-be11-0410-ad9d-d568d2c75423
Diffstat (limited to 'support/cpp/libcpp/files.c')
-rw-r--r--support/cpp/libcpp/files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/cpp/libcpp/files.c b/support/cpp/libcpp/files.c
index 456c0b0f1..6484be5e7 100644
--- a/support/cpp/libcpp/files.c
+++ b/support/cpp/libcpp/files.c
@@ -1179,7 +1179,7 @@ _cpp_init_files (cpp_reader *pfile)
nonexistent_file_hash_eq,
NULL, xcalloc, free);
_obstack_begin (&pfile->nonexistent_file_ob, 0, 0,
- (void *(*) (long)) xmalloc,
+ (void *(*) (size_t)) xmalloc,
(void (*) (void *)) free);
}