ngsconvert.c: add const to cp_enqvar
This commit is contained in:
parent
10c312856e
commit
2ff0e3b1b7
|
|
@ -436,7 +436,7 @@ void cp_ccon(bool o) { NG_IGNORE(o); }
|
|||
char*if_errstring(int c) { NG_IGNORE(c); return copy("error"); }
|
||||
void out_printf(char *fmt, ...) { NG_IGNORE(fmt); }
|
||||
void out_send(char *string) { NG_IGNORE(string); }
|
||||
struct variable * cp_enqvar(char *word, int *tbfreed) { NG_IGNORE(word); NG_IGNORE(*tbfreed); return (NULL); }
|
||||
struct variable * cp_enqvar(const char *word, int *tbfreed) { NG_IGNORE(word); NG_IGNORE(*tbfreed); return (NULL); }
|
||||
struct dvec *vec_get(const char *word) { NG_IGNORE(word); return (NULL); }
|
||||
void cp_ccom(wordlist *w, char *b, bool e) {
|
||||
NG_IGNORE(e);
|
||||
|
|
|
|||
Loading…
Reference in New Issue