mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 20:51:13 +00:00
gst: Fix typo in windows function name.
GetModuleFilename -> GetModuleFileName https://bugzilla.gnome.org/show_bug.cgi?id=788234
This commit is contained in:
parent
81b1258fbb
commit
c9815957d3
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue