1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-12-07 11:46:34 +01:00

rename reserved identifiers per C standard

This commit is contained in:
Jfreegman
2014-09-22 21:24:45 -04:00
parent bf54cb36ef
commit 133c0e8d63
41 changed files with 316 additions and 312 deletions

View File

@@ -20,8 +20,8 @@
*
*/
#ifndef _settings_h
#define _settings_h
#ifndef SETTINGS_H
#define SETTINGS_H
#include <limits.h>
@@ -49,7 +49,7 @@ struct user_settings {
int key_page_bottom;
int key_peer_list_up;
int key_peer_list_down;
#ifdef _AUDIO
#ifdef AUDIO
int audio_in_dev;
int audio_out_dev;
double VAD_treshold;
@@ -82,4 +82,4 @@ enum {
} settings_values;
int settings_load(struct user_settings *s, const char *patharg);
#endif /* #define _settings_h */
#endif /* #define SETTINGS_H */