]> git.ipfire.org Git - thirdparty/HylaFAX.git/commitdiff
Default paramates are specified in the declaration, and not needed (allowed)
authorAidan Van Dyk <aidan@ifax.com>
Thu, 20 Nov 2003 13:53:06 +0000 (13:53 +0000)
committerAidan Van Dyk <aidan@ifax.com>
Thu, 20 Nov 2003 13:53:06 +0000 (13:53 +0000)
in the definition.

Removes the extra =NULL to allow compile with gcc 3.2.

faxd/ModemServer.c++

index 9267ccac25e4be703115fde063bcb775cef614f8..6550c7f799a5bb1acb1b1569c5eff88794f67f81 100644 (file)
@@ -781,7 +781,7 @@ bool ModemServer::serverBusy() const
 
 bool ModemServer::modemWaitForRings(u_int rings, CallType& type, CallerID& cid)
     { return modem->waitForRings(rings, type, cid); }
-CallType ModemServer::modemAnswerCall(AnswerType atype, fxStr& emsg, const char* dialnumber = NULL)
+CallType ModemServer::modemAnswerCall(AnswerType atype, fxStr& emsg, const char* dialnumber)
     { return modem->answerCall(atype, emsg, dialnumber); }
 void ModemServer::modemAnswerCallCmd(CallType ctype)
     { modem->answerCallCmd(ctype); }