Skip to content

Commit bbfc1d0

Browse files
author
thk123
committed
Update parameter names
These did not match their implementation names
1 parent 50fa5a2 commit bbfc1d0

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/goto-programs/string_instrumentation.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,16 +78,16 @@ class string_instrumentationt:public messaget
7878
}
7979

8080
void instrument(goto_programt &dest, goto_programt::targett it);
81-
void do_function_call(goto_programt &dest, goto_programt::targett it);
81+
void do_function_call(goto_programt &dest, goto_programt::targett target);
8282

8383
// strings
8484
void do_sprintf(
8585
goto_programt &dest,
86-
goto_programt::targett it,
86+
goto_programt::targett target,
8787
const code_function_callt &);
8888
void do_snprintf(
8989
goto_programt &dest,
90-
goto_programt::targett it,
90+
goto_programt::targett target,
9191
const code_function_callt &);
9292
void do_strcat(
9393
goto_programt &dest,
@@ -99,27 +99,27 @@ class string_instrumentationt:public messaget
9999
const code_function_callt &);
100100
void do_strchr(
101101
goto_programt &dest,
102-
goto_programt::targett it,
102+
goto_programt::targett target,
103103
const code_function_callt &);
104104
void do_strrchr(
105105
goto_programt &dest,
106-
goto_programt::targett it,
106+
goto_programt::targett target,
107107
const code_function_callt &);
108108
void do_strstr(
109109
goto_programt &dest,
110-
goto_programt::targett it,
110+
goto_programt::targett target,
111111
const code_function_callt &);
112112
void do_strtok(
113113
goto_programt &dest,
114-
goto_programt::targett it,
114+
goto_programt::targett target,
115115
const code_function_callt &);
116116
void do_strerror(
117117
goto_programt &dest,
118118
goto_programt::targett it,
119119
const code_function_callt &);
120120
void do_fscanf(
121121
goto_programt &dest,
122-
goto_programt::targett it,
122+
goto_programt::targett target,
123123
const code_function_callt &);
124124

125125
void do_format_string_read(

0 commit comments

Comments
 (0)