X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2Fheap.h;h=97fcde4c1d040a4598b1c3bb6fa701805d07e2bb;hb=f5c108becd49d78f4898cab11352291f5689d24e;hp=70401c9c456bf91955617224057836a33b393209;hpb=7eee0554f378481faf447e2d2e940f389d6b05ec;p=pspp-builds.git diff --git a/src/libpspp/heap.h b/src/libpspp/heap.h index 70401c9c..97fcde4c 100644 --- a/src/libpspp/heap.h +++ b/src/libpspp/heap.h @@ -59,7 +59,7 @@ heap and delete it: struct heap *h = ...; - if (!heap_is_empty (h)) + if (!heap_is_empty (h)) { struct foo *foo = heap_data (heap_minimum (h), struct foo, node); printf ("Minimum is %d.\n", foo->x);