Merge "Move variable declaration on its own line"
This commit is contained in:
commit
cee8425f22
1 changed files with 2 additions and 1 deletions
|
@ -2085,7 +2085,8 @@ unsigned __linker_init(unsigned **elfdata)
|
|||
|
||||
int argc = (int) *elfdata;
|
||||
char **argv = (char**) (elfdata + 1);
|
||||
unsigned *vecs = (unsigned*) (argv + argc + 1), *v;
|
||||
unsigned *vecs = (unsigned*) (argv + argc + 1);
|
||||
unsigned *v;
|
||||
soinfo *si;
|
||||
struct link_map * map;
|
||||
const char *ldpath_env = NULL;
|
||||
|
|
Loading…
Reference in a new issue