We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3aaaef7 + 96c3776 commit 073ef14Copy full SHA for 073ef14
1 file changed
src/qt/communityfunddisplay.cpp
@@ -93,7 +93,7 @@ void CommunityFundDisplay::refresh()
93
std::string expiry_title = "Rejected on: ";
94
std::time_t t = static_cast<time_t>(proptime);
95
std::stringstream ss;
96
- char buf[24];
+ char buf[48];
97
if (strftime(buf, sizeof(buf), "%c %Z", std::gmtime(&t)))
98
ss << buf;
99
ui->labelTitleDuration->setText(QString::fromStdString(expiry_title));
@@ -108,7 +108,7 @@ void CommunityFundDisplay::refresh()
108
std::string expiry_title = "Expired on: ";
109
110
111
112
113
114
0 commit comments