From: Mathieu Duponchelle Date: Wed, 27 Sep 2017 11:01:13 +0000 (+0200) Subject: gst: Fix typo in windows function name. X-Git-Tag: 1.16.2~662 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c9815957d3a3f5c6253955e246422a8a6206f065;p=platform%2Fupstream%2Fgstreamer.git gst: Fix typo in windows function name. GetModuleFilename -> GetModuleFileName https://bugzilla.gnome.org/show_bug.cgi?id=788234 --- diff --git a/gst/gst.c b/gst/gst.c index c542766..c674708 100644 --- a/gst/gst.c +++ b/gst/gst.c @@ -340,7 +340,7 @@ find_executable_path (void) { char buffer[MAX_PATH]; - if (!GetModuleFilename (NULL, buffer, MAX_PATH)) + if (!GetModuleFileName (NULL, buffer, MAX_PATH)) return; _gst_executable_path = g_strdup (buffer);