virlog: Remove unused macro IS_SPACE

During first stage of virlog.c refactor, commit 0b231195 forgot to remove the
macro definition along with its usage.

Signed-off-by: Erik Skultety <eskultet@redhat.com>
This commit is contained in:
Erik Skultety 2016-10-06 09:53:53 +02:00
parent 599e966efb
commit 6aa3a6a48f

View File

@ -1132,10 +1132,6 @@ int virLogPriorityFromSyslog(int priority ATTRIBUTE_UNUSED)
}
#endif /* HAVE_SYSLOG_H */
#define IS_SPACE(cur) \
((*cur == ' ') || (*cur == '\t') || (*cur == '\n') || \
(*cur == '\r') || (*cur == '\\'))
static int
virLogParseOutput(const char *src)