summaryrefslogtreecommitdiffhomepage
path: root/examples/priority.c
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2022-12-19 10:13:36 +0100
committerTyge Løvset <[email protected]>2022-12-19 10:13:36 +0100
commit6167fa5e361b2954440594cb693f25f643eb9e0a (patch)
tree4e30a01b7274fcc4bedc24d442625d8187130d33 /examples/priority.c
parent1d4ad83d6f3388982cb0aeadbc9815b4776df504 (diff)
downloadSTC-modified-6167fa5e361b2954440594cb693f25f643eb9e0a.tar.gz
STC-modified-6167fa5e361b2954440594cb693f25f643eb9e0a.zip
Some "internal" macros in ccommon.h made all caps.
Diffstat (limited to 'examples/priority.c')
-rw-r--r--examples/priority.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/priority.c b/examples/priority.c
index 6af297ac..f6e63205 100644
--- a/examples/priority.c
+++ b/examples/priority.c
@@ -28,7 +28,7 @@ int main() {
puts("Extract the hundred smallest.");
c_forrange (100) {
- printf("%" PRIdMAX " ", *cpque_i_top(&heap));
+ printf("%" PRId64 " ", *cpque_i_top(&heap));
cpque_i_pop(&heap);
}
}