recorder: Fix compiler warnings

Fix some compiler warnings introduced in e322d988
This commit is contained in:
Adel Gadllah 2012-02-28 20:54:06 +01:00
parent 5f130d1925
commit 24cc4b49d6

View File

@ -1163,7 +1163,7 @@ get_absolute_path (char *maybe_relative)
path = g_strdup (maybe_relative);
else
{
char *video_dir = g_get_user_special_dir (G_USER_DIRECTORY_VIDEOS);
const char *video_dir = g_get_user_special_dir (G_USER_DIRECTORY_VIDEOS);
path = g_build_filename (video_dir, maybe_relative, NULL);
}
@ -1182,7 +1182,7 @@ recorder_open_outfile (ShellRecorder *recorder)
const char *pattern;
int flags;
int outfile = -1;
char *path;
char *path = NULL;
recorder->count++;