output: change null_debug_routine to null_debug_directive

This is the null implementation of the function debug_directive.  For
some reason it ended up getting mangled as "null_debug_routine".

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin 2009-08-09 13:02:35 -07:00
parent 0a45cc8ce8
commit 767750b666
4 changed files with 5 additions and 5 deletions

View File

@ -55,7 +55,7 @@ void null_debug_deflabel(char *name, int32_t segment, int64_t offset,
(void)special;
}
void null_debug_routine(const char *directive, const char *params)
void null_debug_directive(const char *directive, const char *params)
{
(void)directive;
(void)params;
@ -82,7 +82,7 @@ struct dfmt null_debug_form = {
null_debug_init,
null_debug_linenum,
null_debug_deflabel,
null_debug_routine,
null_debug_directive,
null_debug_typevalue,
null_debug_output,
null_debug_cleanup

View File

@ -1479,7 +1479,7 @@ static struct dfmt ladsoft_debug_form = {
dbgls_init,
dbgls_linnum,
dbgls_deflabel,
null_debug_routine,
null_debug_directive,
dbgls_typevalue,
dbgls_output,
dbgls_cleanup,

View File

@ -49,7 +49,7 @@ void null_debug_linenum(const char *filename, int32_t linenumber,
int32_t segto);
void null_debug_deflabel(char *name, int32_t segment, int64_t offset,
int is_global, char *special);
void null_debug_routine(const char *directive, const char *params);
void null_debug_directive(const char *directive, const char *params);
void null_debug_typevalue(int32_t type);
void null_debug_output(int type, void *param);
void null_debug_cleanup(void);

View File

@ -2535,7 +2535,7 @@ static struct dfmt borland_debug_form = {
dbgbi_init,
dbgbi_linnum,
dbgbi_deflabel,
null_debug_routine,
null_debug_directive,
dbgbi_typevalue,
dbgbi_output,
dbgbi_cleanup,