Fix most Mac print format warnings regarding thread id

This commit is contained in:
Fish (David B. Trout)
2019-04-09 23:24:32 -07:00
parent 058c0d31d0
commit cba56356fc
21 changed files with 87 additions and 67 deletions

View File

@@ -866,7 +866,7 @@ struct timeval timeout; /* timeout value */
set_thread_priority( sysblk.srvprio);
/* Display thread started message on control panel */
WRMSG( HHC00100, "I", thread_id(), get_thread_priority(), HTTP_SRVR_THREAD_NAME );
LOG_THREAD_BEGIN( HTTP_SRVR_THREAD_NAME );
/* make sure root path is built */
if ( http_root() == NULL )
@@ -986,7 +986,7 @@ http_server_stop:
hdl_delshut(http_shutdown, NULL);
/* Display thread ended message on control panel */
WRMSG( HHC00101, "I", thread_id(), get_thread_priority(), HTTP_SRVR_THREAD_NAME );
LOG_THREAD_END( HTTP_SRVR_THREAD_NAME );
sysblk.httptid = 0;