33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
diff --git i/src/utils.c w/src/utils.c
|
|
index 206c684..a91faea 100644
|
|
--- i/src/utils.c
|
|
+++ w/src/utils.c
|
|
@@ -302,7 +302,7 @@ int plist_read_from_filename(plist_t *plist, const char *filename)
|
|
return 1;
|
|
}
|
|
|
|
-int plist_write_to_filename(plist_t plist, const char *filename, enum plist_format_t format)
|
|
+int plist_write_to_filename(plist_t plist, const char *filename, plist_format_t format)
|
|
{
|
|
char *buffer = NULL;
|
|
uint32_t length;
|
|
diff --git i/src/utils.h w/src/utils.h
|
|
index b5cab3f..3e9eb41 100644
|
|
--- i/src/utils.h
|
|
+++ w/src/utils.h
|
|
@@ -78,13 +78,8 @@ char *string_concat(const char *str, ...);
|
|
int buffer_read_from_filename(const char *filename, char **buffer, uint64_t *length);
|
|
int buffer_write_to_filename(const char *filename, const char *buffer, uint64_t length);
|
|
|
|
-enum plist_format_t {
|
|
- PLIST_FORMAT_XML,
|
|
- PLIST_FORMAT_BINARY
|
|
-};
|
|
-
|
|
int plist_read_from_filename(plist_t *plist, const char *filename);
|
|
-int plist_write_to_filename(plist_t plist, const char *filename, enum plist_format_t format);
|
|
+int plist_write_to_filename(plist_t plist, const char *filename, plist_format_t format);
|
|
|
|
uint64_t mstime64(void);
|
|
void get_tick_count(struct timeval * tv);
|