summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUri Lublin <uril@redhat.com>2017-07-11 18:54:47 +0300
committerFrediano Ziglio <fziglio@redhat.com>2017-07-14 11:16:48 +0100
commit64f771fef182a967a070fbea871c081231485c8d (patch)
tree9684beda7b2a88924ca0751b4d5db645b750f751
parent32bb5cbeb0aec54defd047d58b5dde393aec82c1 (diff)
event_dispatcher: vd_printf calls -- remove __func__
vd_printf adds __FUNCTION__ Signed-off-by: Uri Lublin <uril@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
-rw-r--r--vdagent/vdagent.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vdagent/vdagent.cpp b/vdagent/vdagent.cpp
index 51f32e1..bb07e1d 100644
--- a/vdagent/vdagent.cpp
+++ b/vdagent/vdagent.cpp
@@ -523,11 +523,11 @@ void VDAgent::event_dispatcher(DWORD timeout, DWORD wake_mask)
handle_control_event();
break;
case STOP_ACTION:
- vd_printf("%s: received stop event", __func__);
+ vd_printf("received stop event");
_running = false;
break;
default:
- vd_printf("%s: action not handled (%d)", __func__, action);
+ vd_printf("action not handled (%d)", action);
_running = false;
}
}