summaryrefslogtreecommitdiffstats
path: root/srUtils.c
diff options
context:
space:
mode:
Diffstat (limited to 'srUtils.c')
-rwxr-xr-xsrUtils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/srUtils.c b/srUtils.c
index 4e91bb9c..4834cfb3 100755
--- a/srUtils.c
+++ b/srUtils.c
@@ -174,7 +174,7 @@ int execProg(uchar *program, int bWait, uchar *arg)
int pid;
int sig;
- dprintf("exec program '%s' with param '%s'\n", program, arg);
+ dbgprintf("exec program '%s' with param '%s'\n", program, arg);
pid = fork();
if (pid < 0) {
return 0;
@@ -189,7 +189,7 @@ int execProg(uchar *program, int bWait, uchar *arg)
* loop. At some time, we may
* reconsider this behaviour.
*/
- dprintf("could not wait on child after executing '%s'",
+ dbgprintf("could not wait on child after executing '%s'",
(char*)program);
}
return pid;