diff options
author | Jonathan Beck | 2008-08-02 12:53:32 +0200 |
---|---|---|
committer | Matt Colyer | 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() gchar* loc_host_id = g_key_file_get_value(key_file, "Global", "HostID", NULL); if (loc_host_id) - host_id = strdup(loc_host_id); + host_id = strdup((char*)loc_host_id); g_free(loc_host_id); } g_key_file_free(key_file); |