diff options
author | Karel Kočí <cynerd@email.cz> | 2015-03-24 23:31:16 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-03-26 13:19:09 +0100 |
commit | e43949f8d7ac1c7f0083ffa0252f0c6dec11363e (patch) | |
tree | 4be761694cb6c24bd2fa77ff8f83856230fa6406 /programs | |
parent | 959aeeca3891d1f21d009e84464d6ac4f2a60816 (diff) | |
download | linux-conf-perf-e43949f8d7ac1c7f0083ffa0252f0c6dec11363e.tar.gz linux-conf-perf-e43949f8d7ac1c7f0083ffa0252f0c6dec11363e.tar.bz2 linux-conf-perf-e43949f8d7ac1c7f0083ffa0252f0c6dec11363e.zip |
Change definition to standard pointer arithmetic
Diffstat (limited to 'programs')
-rw-r--r-- | programs/src/kconfig_parser/output.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/programs/src/kconfig_parser/output.h b/programs/src/kconfig_parser/output.h index a4686e3..b38c0bc 100644 --- a/programs/src/kconfig_parser/output.h +++ b/programs/src/kconfig_parser/output.h @@ -8,7 +8,7 @@ #define DEFAULT_RULES_FILE "rules" #define DEFAULT_SYMBOL_MAP_FILE "symbol_map" -void fprint_rules(struct symlist *sl, char* output); -void fprint_symbol_map(struct symlist *sl, char* output); +void fprint_rules(struct symlist *sl, char *output); +void fprint_symbol_map(struct symlist *sl, char *output); #endif /* _OUTPUT_H_ */ |