summaryrefslogtreecommitdiff
path: root/futility/updater.h
diff options
context:
space:
mode:
Diffstat (limited to 'futility/updater.h')
-rw-r--r--futility/updater.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/futility/updater.h b/futility/updater.h
index bb30ffb1..57e5b0b7 100644
--- a/futility/updater.h
+++ b/futility/updater.h
@@ -47,7 +47,7 @@ struct firmware_section {
};
struct system_property {
- int (*getter)();
+ int (*getter)(void);
int value;
int initialized;
};
@@ -106,7 +106,8 @@ struct updater_config {
struct updater_config_arguments {
char *image, *ec_image, *pd_image;
char *archive, *quirks, *mode;
- char *programmer, *model, *signature_id;
+ const char *programmer;
+ char *model, *signature_id;
char *emulation, *sys_props, *write_protection;
char *output_dir;
char *repack, *unpack;
@@ -167,7 +168,7 @@ enum updater_error_codes update_firmware(struct updater_config *cfg);
* Allocates and initializes a updater_config object with default values.
* Returns the newly allocated object, or NULL on error.
*/
-struct updater_config *updater_new_config();
+struct updater_config *updater_new_config(void);
/*
* Releases all resources in an updater configuration object.