diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-11-30 12:57:26 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-11-30 12:57:26 +0100 |
commit | 7182c6def360378038c9dc824b7cdf8f3d73a73f (patch) | |
tree | 703298652f45ac063837ae79a313e84abb0b21c0 /runtime/queue.c | |
parent | 886ce6653dbc12937fdd80687b167e4323f59ce4 (diff) | |
download | rsyslog-7182c6def360378038c9dc824b7cdf8f3d73a73f.tar.gz rsyslog-7182c6def360378038c9dc824b7cdf8f3d73a73f.tar.bz2 rsyslog-7182c6def360378038c9dc824b7cdf8f3d73a73f.zip |
silence compiler warnings
the changes do not affect actual code execution, just keep the
compile log clean.
Diffstat (limited to 'runtime/queue.c')
-rw-r--r-- | runtime/queue.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/queue.c b/runtime/queue.c index fbf77108..37809238 100644 --- a/runtime/queue.c +++ b/runtime/queue.c @@ -242,6 +242,9 @@ getQueueTypeName(queueType_t t) case QUEUETYPE_DIRECT: r = "Direct"; break; + default: + r = "unknown queue type"; + break; } return r; } |