From f333fb8276c9e452ff3ad4e32d029f8bd91d0671 Mon Sep 17 00:00:00 2001 From: ccremers Date: Thu, 23 Feb 2006 10:44:44 +0000 Subject: [PATCH] - Explicit casts. --- src/heuristic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/heuristic.c b/src/heuristic.c index c9016c6..afee448 100644 --- a/src/heuristic.c +++ b/src/heuristic.c @@ -429,7 +429,7 @@ select_goal_random (const System sys) } else { - return NULL; + return (Binding) NULL; } } @@ -452,5 +452,5 @@ select_goal (const System sys) } error ("Unknown value (<0) for --goal-select."); } - return NULL; + return (Binding) NULL; }