diff --git a/src/sbbs3/qwk.cpp b/src/sbbs3/qwk.cpp index a7b3f7783470a0a293cecf8501561c9485321c41..3295ede14b39fdbaefbedcaec702eabd6fdee531 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); }