From: Frank Li Date: Wed, 17 Jun 2009 14:07:54 +0000 (+0800) Subject: Correct format patch command - argument X-Git-Url: http://git.sourceforge.jp/view?p=tortoisegit%2FTortoiseGitJp.git;a=commitdiff_plain;h=dd08f62edf449039e9c50e46741dedba0e2cfef7;hp=855a1752351c4bf46322180806c3baa5361ae6dc Correct format patch command - argument Signed-off-by: Frank Li --- diff --git a/src/TortoiseProc/Commands/FormatPatchCommand.cpp b/src/TortoiseProc/Commands/FormatPatchCommand.cpp index b3fa3ea..eea9c39 100644 --- a/src/TortoiseProc/Commands/FormatPatchCommand.cpp +++ b/src/TortoiseProc/Commands/FormatPatchCommand.cpp @@ -59,7 +59,7 @@ bool FormatPatchCommand::Execute() range=dlg.m_Since; break; case IDC_RADIO_NUM: - range.Format(_T("-n%d"),dlg.m_Num); + range.Format(_T("-%d"),dlg.m_Num); break; case IDC_RADIO_RANGE: range.Format(_T("%s..%s"),dlg.m_From,dlg.m_To);