summaryrefslogtreecommitdiff
path: root/contrib/c-bindings/gfctest.c
diff options
context:
space:
mode:
authorkevin.kofler <kevin.kofler@chello.at>2010-05-16 21:09:51 +0000
committerkevin.kofler <kevin.kofler@chello.at>2010-05-16 21:09:51 +0000
commit2e6512e3fd9e9b1c612fe36be1c75d7ed4146fa5 (patch)
treebd2695235a9481d4d3d3c7f81701606007d1b21e /contrib/c-bindings/gfctest.c
parent218beec02c3a8572ed99db9799aa2d36ea011f51 (diff)
Update the C bindings to build with the current PGF API
Diffstat (limited to 'contrib/c-bindings/gfctest.c')
-rw-r--r--contrib/c-bindings/gfctest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/c-bindings/gfctest.c b/contrib/c-bindings/gfctest.c
index 2010ca163..f11b103db 100644
--- a/contrib/c-bindings/gfctest.c
+++ b/contrib/c-bindings/gfctest.c
@@ -32,7 +32,7 @@ int main(int argc, char *argv[])
GF_Tree *p = result;
if (*p) {
do {
- char *str = gf_showTree(*(p++));
+ char *str = gf_showExpr(*(p++));
puts(str);
free(str);
} while (*p);