summaryrefslogtreecommitdiff
path: root/modules/dtmfio
diff options
context:
space:
mode:
Diffstat (limited to 'modules/dtmfio')
-rw-r--r--modules/dtmfio/dtmfio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/dtmfio/dtmfio.c b/modules/dtmfio/dtmfio.c
index e159888..8df0a22 100644
--- a/modules/dtmfio/dtmfio.c
+++ b/modules/dtmfio/dtmfio.c
@@ -108,7 +108,7 @@ static int module_init(void)
{
if ( mkfifo( DTMF_OUT, S_IWUSR | S_IRUSR ) ) {
int err = errno;
- error("Creation of the FIFO errored."
+ warning("Creation of the FIFO errored."
" This might cause issues. (%m)\n", err);
return err;
}
@@ -116,7 +116,7 @@ static int module_init(void)
fd = fopen( DTMF_OUT , "w+" );
if ( fd == 0 ){
- error("Opening of the FIFO errored."
+ warning("Opening of the FIFO errored."
" This might cause issues.\n");
}