b7d4d7
From 868d346cc35c222d19b95bd9c367674c9ea859df Mon Sep 17 00:00:00 2001
b7d4d7
From: Vinayakswami Hariharmath <vharihar@redhat.com>
b7d4d7
Date: Tue, 15 Dec 2020 16:23:49 +0530
b7d4d7
Subject: [PATCH 511/511] features/shard: Missing format specifier
b7d4d7
b7d4d7
PRIu64 format specifier explicitly needs (percent sign) as
b7d4d7
prefix and that was missing as part of the below commit on
b7d4d7
downstream
b7d4d7
b7d4d7
https://code.engineering.redhat.com/gerrit/#/c/221061/
b7d4d7
b7d4d7
BUG: 1752739
b7d4d7
Change-Id: I354de58796f350eb1aa42fcdf8092ca2e69ccbb6
b7d4d7
b7d4d7
Signed-off-by: Vinayakswami Hariharmath <vharihar@redhat.com>
b7d4d7
Change-Id: I4598893e3fcca3a2b3e6e8ef9b64b3e5e98923e6
b7d4d7
Reviewed-on: https://code.engineering.redhat.com/gerrit/221217
b7d4d7
Tested-by: RHGS Build Bot <nigelb@redhat.com>
b7d4d7
Reviewed-by: Ravishankar Narayanankutty <ravishankar@redhat.com>
b7d4d7
---
b7d4d7
 xlators/features/shard/src/shard.c | 2 +-
b7d4d7
 1 file changed, 1 insertion(+), 1 deletion(-)
b7d4d7
b7d4d7
diff --git a/xlators/features/shard/src/shard.c b/xlators/features/shard/src/shard.c
b7d4d7
index a967f35..099b062 100644
b7d4d7
--- a/xlators/features/shard/src/shard.c
b7d4d7
+++ b/xlators/features/shard/src/shard.c
b7d4d7
@@ -1855,7 +1855,7 @@ int shard_truncate_last_shard(call_frame_t *frame, xlator_t *this,
b7d4d7
    */
b7d4d7
   if (!inode) {
b7d4d7
     gf_msg_debug(this->name, 0,
b7d4d7
-                 "Last shard to be truncated absent in backend: " PRIu64
b7d4d7
+                 "Last shard to be truncated absent in backend:%" PRIu64
b7d4d7
                  " of gfid: %s. Directly proceeding to update file size",
b7d4d7
                  local->first_block, uuid_utoa(local->loc.inode->gfid));
b7d4d7
     shard_update_file_size(frame, this, NULL, &local->loc,
b7d4d7
-- 
b7d4d7
1.8.3.1
b7d4d7