Skip to content

Commit

Permalink
Fix typo in function declaration (WUPSBackend_GetPluginMetaInformatio…
Browse files Browse the repository at this point in the history
…nByPath)
  • Loading branch information
Maschell committed Apr 25, 2024
1 parent d497441 commit e40d465
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/wups_backend/api.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ PluginBackendApiErrorType WUPSBackend_LoadPluginAsDataByPath(plugin_data_handle

PluginBackendApiErrorType WUPSBackend_LoadPluginAsDataByBuffer(plugin_data_handle *output, char *buffer, size_t size);

PluginBackendApiErrorType WUPSBackend_WUPSGetPluginMetaInformationByPath(plugin_information *output, const char *path);
PluginBackendApiErrorType WUPSBackend_GetPluginMetaInformationByPath(plugin_information *output, const char *path);

PluginBackendApiErrorType WUPSBackend_GetPluginMetaInformationByBuffer(plugin_information *output, char *buffer, size_t size);

Expand Down
2 changes: 1 addition & 1 deletion source/api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ PluginBackendApiErrorType WUPSBackend_LoadPluginAsDataByBuffer(plugin_data_handl
return WUPSLoadPluginAsDataByBuffer(output, buffer, size);
}

PluginBackendApiErrorType WUPSBackend_WUPSGetPluginMetaInformationByPath(plugin_information *output, const char *path) {
PluginBackendApiErrorType WUPSBackend_GetPluginMetaInformationByPath(plugin_information *output, const char *path) {
return WUPSGetPluginMetaInformationByPath(output, path);
}

Expand Down

0 comments on commit e40d465

Please sign in to comment.