When printing "(null)" was being printed if there was no threshold file
Signed-off-by: Ira Weiny <[email protected]> --- src/ibqueryerrors.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/ibqueryerrors.c b/src/ibqueryerrors.c index 1bba0e0..869316b 100644 --- a/src/ibqueryerrors.c +++ b/src/ibqueryerrors.c @@ -90,7 +90,7 @@ static char *threshold_file = DEF_THRES_FILE; /* define a "packet" with threshold values in it */ uint8_t thresholds[1204] = { 0 }; -char * threshold_str = NULL; +char * threshold_str = ""; static void set_thres(char *name, uint32_t val) { -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
