aboutsummaryrefslogtreecommitdiff
path: root/src/graph/viewAlone/spoon2D.c
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-06-16 01:27:47 +0000
committerdos-reis <gdr@axiomatics.org>2011-06-16 01:27:47 +0000
commit3d059f356a2add0e713b2dc3f3a5f253572e7892 (patch)
tree8a4d0bb9403ea620ac65a3b6a7ae4d3281c9fb35 /src/graph/viewAlone/spoon2D.c
parent225a032452ab68d3a227bf5cc5769553a9a09fa1 (diff)
downloadopen-axiom-3d059f356a2add0e713b2dc3f3a5f253572e7892.tar.gz
explicitly cast NULL to appropriate pointer type when used as sentinel
Diffstat (limited to 'src/graph/viewAlone/spoon2D.c')
-rw-r--r--src/graph/viewAlone/spoon2D.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graph/viewAlone/spoon2D.c b/src/graph/viewAlone/spoon2D.c
index 2765ce56..00f46e31 100644
--- a/src/graph/viewAlone/spoon2D.c
+++ b/src/graph/viewAlone/spoon2D.c
@@ -86,7 +86,7 @@ spoonView2D(void)
sprintf(errorStr,"%s","(viewAlone) execution of the TwoDimensionalViewport process");
sprintf(envAXIOM,"%s",oa_getenv("AXIOM"));
sprintf(runView,"%s%s",envAXIOM,"/lib/view2D");
- check(execl(runView,runView,NULL));
+ check(execl(runView,runView, (char*)NULL));
fprintf(stderr,"Could not execute view2D! Check that view2D is on your path variable.\n");
exit(-1);