Fixed a missing const.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2706 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-02-14 14:27:34 +00:00
parent 3469d49d54
commit f5e4e662cd

View File

@ -191,7 +191,7 @@ typedef int (*debugger_command_hook)(int argc, char **argv);
extern int add_debugger_command(char *name, debugger_command_hook hook, char *help);
extern int remove_debugger_command(char *name, debugger_command_hook hook);
extern status_t load_driver_symbols(char *driver_name);
extern status_t load_driver_symbols(const char *driverName);
/*-------------------------------------------------------------*/