CVS update: /ccvs/src/
[email protected] 1 Jun 2005 01:42:38 -0000
| Newsgroups | gmane.comp.version-control.cvs.cvs |
|---|---|
| Message-ID | <[email protected]> |
User: dprice Date: 05/05/31 18:42:38 Modified: /ccvs/src/ ChangeLog, rcscmds.c Log: * rcscmds.c (call_diff_argc_allocated): Rename to... (call_diff_arg_allocated): ...to match similar usage in other files. File Changes: Directory: /ccvs/src/ ===================== File [changed]: ChangeLog Url: https://ccvs.cvshome.org/source/browse/ccvs/src/ChangeLog?r1=1.3202&r2=1.3203 Delta lines: +5 -0 ------------------- --- ChangeLog 1 Jun 2005 01:36:48 -0000 1.3202 +++ ChangeLog 1 Jun 2005 01:42:35 -0000 1.3203 @@ -1,4 +1,9 @@ 2005-05-31 Derek Price <[email protected]> + + * rcscmds.c (call_diff_argc_allocated): Rename to... + (call_diff_arg_allocated): ...to match similar usage in other files. + +2005-05-31 Derek Price <[email protected]> for Alexander Taler <[email protected]> * rcscmds.c: Change type of call_diff_argc_allocated from int to File [changed]: rcscmds.c Url: https://ccvs.cvshome.org/source/browse/ccvs/src/rcscmds.c?r1=1.71&r2=1.72 Delta lines: +2 -2 ------------------- --- rcscmds.c 1 Jun 2005 01:36:48 -0000 1.71 +++ rcscmds.c 1 Jun 2005 01:42:35 -0000 1.72 @@ -76,7 +76,7 @@ static char **call_diff_argv; static int call_diff_argc; -static size_t call_diff_argc_allocated; +static size_t call_diff_arg_allocated; static int call_diff (const char *out); static int call_diff3 (char *out); @@ -93,7 +93,7 @@ call_diff_add_arg (const char *s) { TRACE (TRACE_DATA, "call_diff_add_arg (%s)", s); - run_add_arg_p (&call_diff_argc, &call_diff_argc_allocated, &call_diff_argv, + run_add_arg_p (&call_diff_argc, &call_diff_arg_allocated, &call_diff_argv, s); }