diff --git a/Inc/loadelf.h b/Inc/loadelf.h index 67873316..34375539 100644 --- a/Inc/loadelf.h +++ b/Inc/loadelf.h @@ -125,7 +125,7 @@ char *symbolDisassembleLine( struct symbol *p, enum instructionClass *ic, symbol void symbolDelete( struct symbol *p ); /* Collect symbol set with specified components */ -struct symbol *symbolAquire( char *filename, bool loadlines, bool loadmem, bool loadsource ); +struct symbol *symbolAcquire( char *filename, bool loadlines, bool loadmem, bool loadsource ); /* Check if current symbols are valid */ bool symbolSetValid( struct symbol *p ); diff --git a/Src/loadelf.c b/Src/loadelf.c index 9b787f10..50d9f7e3 100644 --- a/Src/loadelf.c +++ b/Src/loadelf.c @@ -1102,7 +1102,7 @@ bool symbolSetValid( struct symbol *p ) // ==================================================================================================== -struct symbol *symbolAquire( char *filename, bool loadlines, bool loadmem, bool loadsource ) +struct symbol *symbolAcquire( char *filename, bool loadlines, bool loadmem, bool loadsource ) /* Collect symbol set with specified components */ @@ -1237,7 +1237,7 @@ void main( int argc, char *argv[] ) { enum instructionClass ic; - struct symbol *p = symbolAquire( argv[1], true, true, true ); + struct symbol *p = symbolAcquire( argv[1], true, true, true ); if ( !p ) { diff --git a/Src/orbmortem.c b/Src/orbmortem.c index 5df7d9d5..bdba3d3c 100644 --- a/Src/orbmortem.c +++ b/Src/orbmortem.c @@ -998,7 +998,7 @@ static bool _dumpBuffer( struct RunTime *r ) { symbolDelete( r->s ); - if ( !( r->s = symbolAquire( r->options->elffile, true, true, true ) ) ) + if ( !( r->s = symbolAcquire( r->options->elffile, true, true, true ) ) ) { genericsReport( V_ERROR, "Elf file or symbols in it not found" EOL ); return false; @@ -1270,7 +1270,7 @@ int main( int argc, char *argv[] ) } /* Check we've got _some_ symbols to start from */ - _r.s = symbolAquire( _r.options->elffile, true, true, true ); + _r.s = symbolAcquire( _r.options->elffile, true, true, true ); if ( !_r.s ) {