Skip to content

Commit

Permalink
parens around !
Browse files Browse the repository at this point in the history
  • Loading branch information
gray committed May 15, 2000
1 parent 8a3298a commit fb675e0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dmalloc_t.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* The author may be contacted via http://dmalloc.com/
*
* $Id: dmalloc_t.c,v 1.85 2000/03/24 21:57:28 gray Exp $
* $Id: dmalloc_t.c,v 1.86 2000/05/15 22:23:03 gray Exp $
*/

/*
Expand Down Expand Up @@ -57,10 +57,10 @@

#if INCLUDE_RCS_IDS
#ifdef __GNUC__
#ident "$Id: dmalloc_t.c,v 1.85 2000/03/24 21:57:28 gray Exp $";
#ident "$Id: dmalloc_t.c,v 1.86 2000/05/15 22:23:03 gray Exp $";
#else
static char *rcs_id =
"$Id: dmalloc_t.c,v 1.85 2000/03/24 21:57:28 gray Exp $";
"$Id: dmalloc_t.c,v 1.86 2000/05/15 22:23:03 gray Exp $";
#endif
#endif

Expand Down Expand Up @@ -526,7 +526,7 @@ static int check_special(void)
}
free(NULL);
#if ALLOW_FREE_NULL
if (dmalloc_errno != ERROR_NONE && ! silent_b) {
if (dmalloc_errno != ERROR_NONE && (! silent_b)) {
(void)printf(" ERROR: free of 0L returned error.\n");
}
#else
Expand Down

0 comments on commit fb675e0

Please sign in to comment.