diff options
author | SheetalPamecha <spamecha@redhat.com> | 2019-06-17 15:42:20 +0530 |
---|---|---|
committer | Amar Tumballi <amarts@redhat.com> | 2019-06-18 10:53:49 +0000 |
commit | b79222f650f6613758f036c749f5f879a54148a7 (patch) | |
tree | 663a433d7541a88362ffc149148352e8172c7cf2 /libglusterfs | |
parent | 25ad5aca23b257cdd129cd1d4518b048fbba87bb (diff) |
core: fedora 30 compiler warnings
warning: ā%sā directive argument is null [-Wformat-overflow=]
Change-Id: I69b8d47f0002c58b00d1cc947fac6f1c64e0b295
updates: bz#1193929
Signed-off-by: SheetalPamecha <spamecha@redhat.com>
Diffstat (limited to 'libglusterfs')
-rw-r--r-- | libglusterfs/src/graph.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libglusterfs/src/graph.y b/libglusterfs/src/graph.y index 56cab044266..e63febdc08b 100644 --- a/libglusterfs/src/graph.y +++ b/libglusterfs/src/graph.y @@ -123,7 +123,7 @@ new_volume (char *name) int ret = 0; if (!name) { - gf_msg_debug ("parser", 0,"Invalid argument name: '%s'", name); + gf_msg_debug ("parser", 0,"Invalid argument name"); ret = -1; goto out; } |