gst: Fix typo in windows function name.

GetModuleFilename -> GetModuleFileName

https://bugzilla.gnome.org/show_bug.cgi?id=788234
This commit is contained in:
Mathieu Duponchelle 2017-09-27 13:01:13 +02:00
parent 81b1258fbb
commit c9815957d3

View file

@ -340,7 +340,7 @@ find_executable_path (void)
{ {
char buffer[MAX_PATH]; char buffer[MAX_PATH];
if (!GetModuleFilename (NULL, buffer, MAX_PATH)) if (!GetModuleFileName (NULL, buffer, MAX_PATH))
return; return;
_gst_executable_path = g_strdup (buffer); _gst_executable_path = g_strdup (buffer);