From: Jon Steinhart Date: Mon, 12 Dec 2005 22:30:44 +0000 (+0000) Subject: Fixed annotate call for new delete argument values. X-Git-Tag: RELEASE_1_2~4 X-Git-Url: http://git.marmaro.de/?a=commitdiff_plain;h=d72dc17f4164fd8a3e3c56a74a66a21138d82814;p=mmh Fixed annotate call for new delete argument values. --- diff --git a/uip/whatnowsbr.c b/uip/whatnowsbr.c index 53320d3..1935384 100644 --- a/uip/whatnowsbr.c +++ b/uip/whatnowsbr.c @@ -447,10 +447,10 @@ WhatNow (int argc, char **argv) *(strchr(shell, '\n')) = '\0'; if (*shell == '/') - (void)annotate(drft, attach, shell, 1, 0, -1, 1); + (void)annotate(drft, attach, shell, 1, 0, -2, 1); else { (void)sprintf(file, "%s/%s", cwd, shell); - (void)annotate(drft, attach, file, 1, 0, -1, 1); + (void)annotate(drft, attach, file, 1, 0, -2, 1); } }