output/stdout.c: changed the output abit.
This commit is contained in:
parent
d05c15a935
commit
d9007a38a7
1 changed files with 1 additions and 3 deletions
|
|
@ -27,8 +27,6 @@ int output_process(notify_event *event) {
|
|||
|
||||
char *event_string;
|
||||
|
||||
printf("Running output_process()\n");
|
||||
|
||||
switch (event->type) {
|
||||
case NOTIFY_CREATE:
|
||||
event_string = "create";
|
||||
|
|
@ -46,7 +44,7 @@ int output_process(notify_event *event) {
|
|||
event_string = "unknown";
|
||||
}
|
||||
|
||||
printf("Event: {Path: %s, Filename: %s, Type: %s}\n", event->path, event->filename, event_string);
|
||||
printf("output_process: {Path: %s, Filename: %s, Type: %s}\n", event->path, event->filename, event_string);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Reference in a new issue