summaryrefslogtreecommitdiff
path: root/libs/JSystem/JKernel/JKRDvdFile.cpp
diff options
context:
space:
mode:
authorTakaRikka <38417346+TakaRikka@users.noreply.github.com>2023-09-16 10:17:56 -0700
committerGitHub <noreply@github.com>2023-09-16 20:17:56 +0300
commit76b94a8916b98879820e514b7243ec779e3c25c0 (patch)
tree3710ab6c2bc2c982e1d28485c253e77c6b6a79d8 /libs/JSystem/JKernel/JKRDvdFile.cpp
parent3d8048edba50aa4faa845954992a0ec8dd844960 (diff)
fix/simplify assert macros (#1929)
Diffstat (limited to 'libs/JSystem/JKernel/JKRDvdFile.cpp')
-rw-r--r--libs/JSystem/JKernel/JKRDvdFile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/JSystem/JKernel/JKRDvdFile.cpp b/libs/JSystem/JKernel/JKRDvdFile.cpp
index 38a7b4b63f..2c43bd980b 100644
--- a/libs/JSystem/JKernel/JKRDvdFile.cpp
+++ b/libs/JSystem/JKernel/JKRDvdFile.cpp
@@ -99,7 +99,7 @@ s32 JKRDvdFile::readData(void* param_1, long length, long param_3) {
// The assert condition gets stringified as "( length & 0x1f ) == 0",
// with out disabling clang-format the spaces in the condition will
// get removed and the string will be incorrect.
- JUT_ASSERT(__FILE__, 238, ( length & 0x1f ) == 0);
+ JUT_ASSERT(238, ( length & 0x1f ) == 0);
/* clang-format on */
OSLockMutex(&mMutex1);