Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
freddy77 committed Jul 4, 2005
1 parent 159ed78 commit f49c72c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dblib/bcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ typedef struct _pbcb
}
TDS_PBCB;

static char software_version[] = "$Id: bcp.c,v 1.104.2.6 2005-07-04 06:41:58 freddy77 Exp $";
static char software_version[] = "$Id: bcp.c,v 1.104.2.7 2005-07-04 09:00:55 freddy77 Exp $";
static void *no_unused_var_warn[] = { software_version, no_unused_var_warn };

static RETCODE _bcp_build_bcp_record(DBPROCESS * dbproc, TDS_INT *record_len, int behaviour);
Expand Down Expand Up @@ -2841,7 +2841,7 @@ rtrim(char *istr, int ilen)

for (t = istr + ilen; --t > istr && *t == ' '; )
*t = '\0';
return t - str + 1
return t - istr + 1;
}

static RETCODE
Expand Down

0 comments on commit f49c72c

Please sign in to comment.