diff options
-rw-r--r-- | generic/Transfo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/Transfo.c b/generic/Transfo.c index 54d9c79..a45b701 100644 --- a/generic/Transfo.c +++ b/generic/Transfo.c @@ -293,7 +293,7 @@ ZnTransfoInvert(ZnTransfo *t, temp = det_l / (pos - neg); /* Why divide by (pos - neg) ?? */ if (ABS(temp) < PRECISION_LIMIT) { - ZnWarning("ZnTransfoInvert : singular matrix"); + ZnWarning("ZnTransfoInvert : singular matrix\n"); return NULL; } @@ -361,7 +361,7 @@ ZnTransfoDecompose(ZnTransfo *t, det = (t->_[0][0]*t->_[1][1] - t->_[0][1]*t->_[1][0]); if (ABS(det) < PRECISION_LIMIT) { - ZnWarning("ZnTransfoDecompose : singular matrix"); + ZnWarning("ZnTransfoDecompose : singular matrix\n"); return; } |