insertnumber(), rename s_ ==> s

This commit is contained in:
rlar 2016-05-01 17:55:11 +02:00
parent 1f15329745
commit 34e37f393c
1 changed files with 5 additions and 5 deletions

View File

@ -1153,7 +1153,7 @@ evaluate_expr(dico_t *dico, SPICE_DSTRINGPTR qstr_p, const char *t, const char *
/********* interface functions for spice3f5 extension ***********/
static int
insertnumber(dico_t *dico, char * const s_, SPICE_DSTRINGPTR ustr_p)
insertnumber(dico_t *dico, char * const s, SPICE_DSTRINGPTR ustr_p)
/* insert u in string s in place of the next placeholder number */
{
const char *u = spice_dstring_value(ustr_p);
@ -1163,7 +1163,7 @@ insertnumber(dico_t *dico, char * const s_, SPICE_DSTRINGPTR ustr_p)
long id = 0;
int n = 0;
char *p = strstr(s_, "numparm__________");
char *p = strstr(s, "numparm__________");
if (p &&
(1 == sscanf(p, "numparm__________%8lx%n", &id, &n)) &&
@ -1172,17 +1172,17 @@ insertnumber(dico_t *dico, char * const s_, SPICE_DSTRINGPTR ustr_p)
(snprintf(buf, sizeof(buf), "%-25s", u) == ACT_CHARACTS))
{
memcpy(p, buf, ACT_CHARACTS);
return (int)(p - s_) + ACT_CHARACTS;
return (int)(p - s) + ACT_CHARACTS;
}
message
(dico,
"insertnumber: fails.\n"
" s = \"%s\" u=\"%s\" id=%ld\n",
s_, u, id);
s, u, id);
/* swallow everything on failure */
return (int) strlen(s_);
return (int) strlen(s);
}