Skip to content

Commit

Permalink
change naming format of symbols in s3
Browse files Browse the repository at this point in the history
  • Loading branch information
kjk committed Oct 24, 2015
1 parent 55f4137 commit 66217d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CrashHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ static WCHAR *BuildSymbolsUrl() {
WCHAR *urlBase = L"http://kjkpub.s3.amazonaws.com/sumatrapdf/rel/SumatraPDF-" TEXT(QM(CURR_VERSION));
#endif
WCHAR *is64 = IsProcess64() ? L"-64" : L"";
return str::Format(L"%s.pdb%s.lzsa", urlBase, is64);
return str::Format(L"%s%s.pdb.lzsa", urlBase, is64);
#endif
}

Expand Down

0 comments on commit 66217d0

Please sign in to comment.