diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-06-12 02:06:16 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-06-12 02:06:16 +0000 |
commit | 43b355734cf192129f2906789185301a61f4cd8a (patch) | |
tree | 35a3a56a085fc590b1864347d49660d421157305 /src/utils.h | |
parent | 43255a7f63af65d88bbead4c0d6429ef2008ada8 (diff) | |
download | mpd-43b355734cf192129f2906789185301a61f4cd8a.tar.gz mpd-43b355734cf192129f2906789185301a61f4cd8a.tar.xz mpd-43b355734cf192129f2906789185301a61f4cd8a.zip |
Add WARNING log method. it's the same as ERROR, except that when mpd starts,
warnings are buffered until the error log is opened, and then flushed to the
error log.
git-svn-id: https://svn.musicpd.org/mpd/trunk@1442 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/utils.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/utils.h b/src/utils.h index fd03915f9..545f1653d 100644 --- a/src/utils.h +++ b/src/utils.h @@ -33,5 +33,6 @@ void my_usleep(long usec); int ipv6Supported(); +char * appendToString(char * dest, const char * src); + #endif -/* vim:set shiftwidth=4 tabstop=8 expandtab: */ |