Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
coverity bugfix 93580: parameters for day montha year were in wrong o…
…rder
  • Loading branch information
John Harvey committed Feb 28, 2017
commit af8c5d555787f2d3776543267b64b7b41dc96a1a
2 changes: 1 addition & 1 deletion sql/pgsql/src/TPgSQLStatement.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ Bool_t TPgSQLStatement::GetTime(Int_t npar, Int_t& hour, Int_t& min, Int_t& sec)
Int_t year = d.GetYear();
Int_t month = d.GetMonth();
Int_t day = d.GetDay();
ConvertTimeToUTC(val, day, month, year, hour, min, sec);
ConvertTimeToUTC(val, year, month, day, hour, min, sec);
return kTRUE;
}

Expand Down