From eeed8edf829941e13d74adcd287e393f39b22ef8 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 1 Jun 2016 19:19:09 +0200 Subject: isspace --- libs/ardour/lv2_plugin.cc | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'libs/ardour/lv2_plugin.cc') diff --git a/libs/ardour/lv2_plugin.cc b/libs/ardour/lv2_plugin.cc index 5b97b68333..9e253a359f 100644 --- a/libs/ardour/lv2_plugin.cc +++ b/libs/ardour/lv2_plugin.cc @@ -17,6 +17,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#include #include #include #include @@ -238,11 +239,7 @@ log_vprintf(LV2_Log_Handle /*handle*/, char* str = NULL; const int ret = g_vasprintf(&str, fmt, args); /* strip trailing whitespace */ - while (strlen (str) > 0 - && ( str[strlen (str) - 1] == '\n' - || str[strlen (str) - 1] == '\r' - || str[strlen (str) - 1] == ' ' - || str[strlen (str) - 1] == '\t')) { + while (strlen (str) > 0 && isspace (str[strlen (str) - 1])) { str[strlen (str) - 1] = '\0'; } if (strlen (str) == 0) { -- cgit v1.2.3