Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 1971 → Rev 1972

/trunk/kernel/generic/src/console/kconsole.c
204,7 → 204,7
*/
static int cmdtab_compl(char *name)
{
char output[MAX_SYMBOL_NAME+1];
static char output[MAX_SYMBOL_NAME+1];
link_t *startpos = NULL;
const char *foundtxt;
int found = 0;
244,7 → 244,7
{
static int histposition = 0;
 
char tmp[MAX_CMDLINE+1];
static char tmp[MAX_CMDLINE+1];
int curlen = 0, position = 0;
char *current = history[histposition];
int i;
433,7 → 433,7
 
static int parse_int_arg(char *text, size_t len, unative_t *result)
{
char symname[MAX_SYMBOL_NAME];
static char symname[MAX_SYMBOL_NAME];
uintptr_t symaddr;
bool isaddr = false;
bool isptr = false;