diff options
| author | 2008-08-02 12:53:32 +0200 | |
|---|---|---|
| committer | 2008-08-05 23:28:10 -0700 | |
| commit | b6ed54477c00e2b4572e898fe0a47aa64a028c26 (patch) | |
| tree | f29a2e47e45e5acefd4f0d6fc95e6c828f0b1e34 /src/userpref.c | |
| parent | dceb48d2745014ef68ab218f2257e5f0642d998c (diff) | |
| download | libimobiledevice-b6ed54477c00e2b4572e898fe0a47aa64a028c26.tar.gz libimobiledevice-b6ed54477c00e2b4572e898fe0a47aa64a028c26.tar.bz2 | |
fixes some warnings
Signed-off-by: Matt Colyer <matt@colyer.name>
Diffstat (limited to 'src/userpref.c')
| -rw-r--r-- | src/userpref.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/userpref.c b/src/userpref.c index 27aded5..bc92f96 100644 --- a/src/userpref.c +++ b/src/userpref.c | |||
| @@ -44,7 +44,7 @@ char* get_host_id() | |||
| 44 | 44 | ||
| 45 | gchar* loc_host_id = g_key_file_get_value(key_file, "Global", "HostID", NULL); | 45 | gchar* loc_host_id = g_key_file_get_value(key_file, "Global", "HostID", NULL); |
| 46 | if (loc_host_id) | 46 | if (loc_host_id) |
| 47 | host_id = strdup(loc_host_id); | 47 | host_id = strdup((char*)loc_host_id); |
| 48 | g_free(loc_host_id); | 48 | g_free(loc_host_id); |
| 49 | } | 49 | } |
| 50 | g_key_file_free(key_file); | 50 | g_key_file_free(key_file); |
