mirror of
https://github.com/void-linux/void-packages.git
synced 2025-10-11 21:15:12 +02:00
16 lines
480 B
Diff
16 lines
480 B
Diff
--- a/jdk/src/share/bin/splashscreen_stubs.c
|
|
+++ b/jdk/src/share/bin/splashscreen_stubs.c
|
|
@@ -61,11 +61,11 @@
|
|
#define INVOKEV(name) _INVOKE(name, ,;)
|
|
|
|
int DoSplashLoadMemory(void* pdata, int size) {
|
|
- INVOKE(SplashLoadMemory, NULL)(pdata, size);
|
|
+ INVOKE(SplashLoadMemory, 0)(pdata, size);
|
|
}
|
|
|
|
int DoSplashLoadFile(const char* filename) {
|
|
- INVOKE(SplashLoadFile, NULL)(filename);
|
|
+ INVOKE(SplashLoadFile, 0)(filename);
|
|
}
|
|
|
|
void DoSplashInit(void) {
|