nfsclient: Avoid __FILE__ and __LINE__

The __FILE__ prevents reproducible builds.
This commit is contained in:
Sebastian Huber
2014-12-05 13:05:34 +01:00
parent 4a3db517e4
commit b657ea4d33
+1 -3
View File
@@ -1348,9 +1348,7 @@ rtems_status_code status;
fprintf(stderr,"RPCIO XACT timed out; waking up requestor\n");
#endif
if ( rtems_event_send(xact->requestor, RTEMS_RPC_EVENT) ) {
rtems_panic("RPCIO PANIC file %s line: %i, requestor id was 0x%08x",
__FILE__,
__LINE__,
rtems_panic("RPCIO PANIC: requestor id was 0x%08x",
xact->requestor);
}