Skip to content

Commit 55d6c2c

Browse files
author
bg
committed
fixing compilation error on macos aarch64 (#1905)
just so
1 parent a137df7 commit 55d6c2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_render/src/shader/shader.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub enum ShaderError {
2929

3030
#[cfg(any(target_os = "ios", all(target_arch = "aarch64", target_os = "macos")))]
3131
/// shaderc error.
32-
#[error("shaderc error: {}")]
32+
#[error("shaderc error: {0}")]
3333
ShaderC(#[from] shaderc::Error),
3434

3535
#[cfg(any(target_os = "ios", all(target_arch = "aarch64", target_os = "macos")))]

0 commit comments

Comments
 (0)