Skip to content

Commit 9038a46

Browse files
committed
Fix message format
Signed-off-by: Lukas Sommer <[email protected]>
1 parent 369ccf0 commit 9038a46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sycl-jit/jit-compiler/lib/rtc/DeviceCompilation.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,9 @@ class LLVMDiagnosticWrapper : public llvm::DiagnosticHandler {
202202
auto Prefix = [](DiagnosticSeverity Severity) -> llvm::StringLiteral {
203203
switch (Severity) {
204204
case llvm::DiagnosticSeverity::DS_Error:
205-
return "ERROR";
205+
return "ERROR:";
206206
case llvm::DiagnosticSeverity::DS_Warning:
207-
return "WARNING";
207+
return "WARNING:";
208208
default:
209209
return "NOTE:";
210210
}

0 commit comments

Comments
 (0)