We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7863554 commit 1c4b917Copy full SHA for 1c4b917
storage/connect/value.cpp
@@ -2744,11 +2744,11 @@ void DTVAL::SetValue(int n)
2744
Tval = n;
2745
2746
if (Pdtp) {
2747
- size_t n = 0, slen = (size_t)Len + 1;
+ size_t slen = (size_t)Len + 1;
2748
struct tm tm, *ptm= GetGmTime(&tm);
2749
2750
if (ptm)
2751
- n = strftime(Sdate, slen, Pdtp->OutFmt, ptm);
+ strftime(Sdate, slen, Pdtp->OutFmt, ptm);
2752
2753
} // endif Pdtp
2754
0 commit comments