From b5cdd05c8b03b8ca629ec4dd6dc609fefc8e6bf2 Mon Sep 17 00:00:00 2001 From: Prasanna Kumar Kalever Date: Thu, 22 Jun 2017 16:46:54 +0530 Subject: cli: fix missing newline characters Change-Id: I06f20a355453d81955d4308ecad68358fa1f99cc Signed-off-by: Prasanna Kumar Kalever --- cli/gluster-block.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cli') diff --git a/cli/gluster-block.c b/cli/gluster-block.c index 0aab6e6..ec931d1 100644 --- a/cli/gluster-block.c +++ b/cli/gluster-block.c @@ -242,7 +242,7 @@ glusterBlockParseVolumeBlock(char *volumeblock, char *volume, char *block, /* part before '/' is the volume name */ sep = strchr(volumeblock, '/'); if (!sep) { - MSG("argument ''(%s) is incorrect", + MSG("argument ''(%s) is incorrect\n", volumeblock); MSG("%s\n", helpstr); LOG("cli", GB_LOG_ERROR, "%s failed while parsing ", op); @@ -261,12 +261,12 @@ glusterBlockParseVolumeBlock(char *volumeblock, char *volume, char *block, strncpy(block, sep+1, strlen(sep+1)); if (!glusterBlockIsNameAcceptable (volume)) { MSG("volume name(%s) should contain only aplhanumeric,'-' " - "and '_' characters", volume); + "and '_' characters\n", volume); goto out; } if (!glusterBlockIsNameAcceptable (block)) { MSG("block name(%s) should contain only aplhanumeric,'-' " - "and '_' characters", block); + "and '_' characters\n", block); goto out; } ret = 0; -- cgit