mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
17 lines
492 B
Diff
17 lines
492 B
Diff
--- openjdk/jdk/src/share/bin/splashscreen_stubs.c
|
|
+++ openjdk/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) {
|