Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit ad4b45e

Browse files
committed
Fix revpdfprinter for 64-bit
1 parent 66a3b9e commit ad4b45e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

revpdfprinter/src/revpdfprinter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1329,7 +1329,7 @@ bool custom_printer_clusters_to_cairo_clusters(const uint32_t *p_cp_clusters, ui
13291329
#if defined(_MACOSX) || defined(TARGET_SUBPLATFORM_IPHONE)
13301330
void * operator new (long unsigned int p_amount)
13311331
#else
1332-
void * operator new (unsigned int p_amount)
1332+
void * operator new (size_t p_amount)
13331333
#endif
13341334
{
13351335
void *t_result;

0 commit comments

Comments
 (0)