Correct typo in comment.

This commit is contained in:
Bård Skaflestad
2010-08-04 12:29:49 +00:00
parent 235f534376
commit a2af73ea08

View File

@@ -60,7 +60,7 @@ deallocate_aux_arrays(int *nconn, double *src, double *gflux)
/* ---------------------------------------------------------------------- */
{
/* Apparently mxFree() makes no guarantee regarding NULL arguments.
* Institute a belts-and-suspenders approach to releasing resources.
* Institute a belt-and-suspenders approach to releasing resources.
*/
if (gflux != NULL) { mxFree(gflux); }
if (src != NULL) { mxFree(src); }