From 8491e813ddacf2d65864c54c70f22cafc2bdb7ce Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Thu, 21 Jul 2011 11:16:09 +0000 Subject: [PATCH] Harmless change: Use NULL (instead of 0) for pointers. --- src/sbbs3/qwk.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sbbs3/qwk.cpp b/src/sbbs3/qwk.cpp index a7b3f77834..3295ede14b 100644 --- a/src/sbbs3/qwk.cpp +++ b/src/sbbs3/qwk.cpp @@ -818,14 +818,14 @@ void sbbs_t::qwksetptr(uint subnum, char *buf, int reset) if(l>=0) /* ptr specified */ subscan[subnum].ptr=l; else if(l) { /* relative ptr specified */ - getlastmsg(subnum,&last,0); + getlastmsg(subnum,&last,/* time_t* */NULL); if(-l>(long)last) subscan[subnum].ptr=0; else subscan[subnum].ptr=last+l; } else if(reset) - getlastmsg(subnum,&(subscan[subnum].ptr),0); + getlastmsg(subnum,&(subscan[subnum].ptr),/* time_t* */NULL); } -- GitLab