Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
RecursiveError committed Feb 18, 2025
1 parent 89fb134 commit 51e26f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/stmicro/stm32/src/semihosting.zig
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ const microzig = @import("microzig");
const semihosting = microzig.core.experimental.ARM_semihosting;

pub fn main() void {
const patch = "";
const file_name = patch ++ "foo.txt";
const new_name = patch ++ "bar.txt";
const path = "";
const file_name = path ++ "foo.txt";
const new_name = path ++ "bar.txt";
var some_buf: [80]u8 = undefined;

//debug features
Expand Down

0 comments on commit 51e26f0

Please sign in to comment.