the return value rather than in *error. In the old days type-
checking would have caught this, but now of course they're the same
type.
[originally from svn r6161]
if (ret != 1) {
sfree(soln);
if (ret == 0)
- return "This puzzle is not self-consistent";
+ *error = "This puzzle is not self-consistent";
else
- return "Unable to find a unique solution for this puzzle";
+ *error = "Unable to find a unique solution for this puzzle";
+ return NULL;
}
free_soln = TRUE;
}