aboutsummaryrefslogtreecommitdiffstats
path: root/sync_pipe_write.c
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2021-06-15 00:06:02 +0100
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-06-16 12:50:27 +0000
commit39df3ae3c0ff12da5f5630b89a147b65588cc4c2 (patch)
tree280be0d508116a8fdb3d3a719f249497868a12c2 /sync_pipe_write.c
parent4c4bb915c866f234e527ae0a5fc296ef3f732a0e (diff)
Replace g_log() calls with ws_log()
Diffstat (limited to 'sync_pipe_write.c')
-rw-r--r--sync_pipe_write.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sync_pipe_write.c b/sync_pipe_write.c
index 8c9f136111..b40cd98d91 100644
--- a/sync_pipe_write.c
+++ b/sync_pipe_write.c
@@ -51,7 +51,7 @@ pipe_write_block(int pipe_fd, char indicator, const char *msg)
ssize_t ret;
int len;
- /*g_warning("write %d enter", pipe_fd);*/
+ /*ws_warning("write %d enter", pipe_fd);*/
if(msg != NULL) {
len = (int) strlen(msg) + 1; /* including the terminating '\0'! */
@@ -67,16 +67,16 @@ pipe_write_block(int pipe_fd, char indicator, const char *msg)
/* write value (if we have one) */
if(len) {
- /*g_warning("write %d indicator: %c value len: %u msg: %s", pipe_fd, indicator, len, msg);*/
+ /*ws_warning("write %d indicator: %c value len: %u msg: %s", pipe_fd, indicator, len, msg);*/
ret = ws_write(pipe_fd, msg, len);
if(ret == -1) {
return;
}
} else {
- /*g_warning("write %d indicator: %c no value", pipe_fd, indicator);*/
+ /*ws_warning("write %d indicator: %c no value", pipe_fd, indicator);*/
}
- /*g_warning("write %d leave", pipe_fd);*/
+ /*ws_warning("write %d leave", pipe_fd);*/
}