From ee232b251c7072935d0507dc0bad27f375a12492 Mon Sep 17 00:00:00 2001
From: Valentin Vidic <Valentin.Vidic@CARNet.hr>
Date: Wed, 8 Nov 2017 22:02:29 +0100
Subject: [PATCH] Fix: gcc format string error
---
src/sbd-common.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/sbd-common.c b/src/sbd-common.c
index 803bc3a..1d7dbc2 100644
--- a/src/sbd-common.c
+++ b/src/sbd-common.c
@@ -268,7 +268,7 @@ watchdog_populate_list(void)
{makedev(10,130), 0};
int num_watchdogs = 1;
struct dirent *entry;
- char entry_name[64];
+ char entry_name[280];
DIR *dp;
char buf[256] = "";
--
1.8.3.1