summaryrefslogtreecommitdiffstats
path: root/utils/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/common.c')
-rw-r--r--utils/common.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/common.c b/utils/common.c
index dfa6bc8..a605f0d 100644
--- a/utils/common.c
+++ b/utils/common.c
@@ -14,7 +14,7 @@
ssize_t
-glusterBlockCreateParseSize(char *value)
+glusterBlockCreateParseSize(const char *dom, char *value)
{
char *postfix;
char *tmp;
@@ -26,7 +26,7 @@ glusterBlockCreateParseSize(char *value)
sizef = strtod(value, &postfix);
if (sizef < 0) {
- ERROR("%s", "size cannot be negative number\n");
+ LOG(dom, GB_LOG_ERROR, "%s", "size cannot be negative number");
return -1;
}
@@ -66,9 +66,9 @@ glusterBlockCreateParseSize(char *value)
return sizef;
break;
default:
- /*TODO: Log this instead of printing
- ERROR("%s", "You may use k/K, M, G or T suffixes for "
- "kilobytes, megabytes, gigabytes and terabytes."); */
+ LOG(dom, GB_LOG_ERROR, "%s",
+ "You may use k/K, M, G or T suffixes for kilobytes, "
+ "megabytes, gigabytes and terabytes.");
return -1;
}
}