diff options
| author | Michael Biebl <biebl@debian.org> | 2018-09-08 17:44:06 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2018-09-08 17:44:06 +0200 |
| commit | 8f7a3cbbdd0c0a48277c341dd3a8ec8743ae9735 (patch) | |
| tree | 4353551fcb59cc822c3cadf2f4888f70601e8fbf /src/nm-config.h | |
| parent | caf1db9d6fbc056cc6c76a24574890f6c7895f3d (diff) | |
New upstream version 1.13.90 upstream/1.13.90
Diffstat (limited to 'src/nm-config.h')
| -rw-r--r-- | src/nm-config.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nm-config.h b/src/nm-config.h index 5d027ce0..1b013ff3 100644 --- a/src/nm-config.h +++ b/src/nm-config.h @@ -159,13 +159,13 @@ void _nm_config_state_set (NMConfig *config, #define nm_config_state_set(config, allow_persist, force_persist, ...) \ _nm_config_state_set (config, allow_persist, force_persist, ##__VA_ARGS__, 0) -gint nm_config_parse_boolean (const char *str, gint default_value); +int nm_config_parse_boolean (const char *str, int default_value); GKeyFile *nm_config_create_keyfile (void); -gint nm_config_keyfile_get_boolean (const GKeyFile *keyfile, +int nm_config_keyfile_get_boolean (const GKeyFile *keyfile, const char *section, const char *key, - gint default_value); + int default_value); gint64 nm_config_keyfile_get_int64 (const GKeyFile *keyfile, const char *section, const char *key, @@ -234,7 +234,7 @@ gboolean nm_config_device_state_write (int ifindex, NMConfigDeviceStateManagedType managed, const char *perm_hw_addr_fake, const char *connection_uuid, - gint nm_owned, + int nm_owned, guint32 route_metric_default_aspired, guint32 route_metric_default_effective); |