mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-07 07:28:02 +02:00
lzo_uint is a typedef for a machine-sized unsigned integral. We track sizes using unsigned long, which is machine-sized on most (all?) Unices, but 32bit on 64bit Windows. This means that lzo_uint and unsigned long are not really interchangeable (should have used size_t!). Fix the build by using intermediate variables. The cairo-script file format ensures that uncompressed data fits within 4GB. Fixes -Wincompatible-pointer-types errors. |
||
|---|---|---|
| .. | ||
| examples | ||
| .gitignore | ||
| cairo-script-file.c | ||
| cairo-script-hash.c | ||
| cairo-script-interpreter-uninstalled.pc.in | ||
| cairo-script-interpreter.c | ||
| cairo-script-interpreter.h | ||
| cairo-script-interpreter.pc.in | ||
| cairo-script-objects.c | ||
| cairo-script-operators.c | ||
| cairo-script-private.h | ||
| cairo-script-scanner.c | ||
| cairo-script-stack.c | ||
| COPYING | ||
| csi-bind.c | ||
| csi-exec.c | ||
| csi-replay.c | ||
| csi-trace.c | ||
| meson.build | ||