Skip to content

Commit

Permalink
re-fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
renerocksai committed Apr 21, 2024
1 parent 1e19998 commit 540c204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/request.zig
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ pub const HttpParamBinaryFile = struct {
filename: ?[]const u8 = null,

/// format function for printing file upload data
pub fn format(value: @This(), comptime _: []const u8, _: std.fmt.FormatOptions, writer: anytype) std.os.WriteError!void {
pub fn format(value: @This(), comptime _: []const u8, _: std.fmt.FormatOptions, writer: anytype) !void {
const d = value.data orelse "\\0";
const m = value.mimetype orelse "null";
const f = value.filename orelse "null";
Expand Down

0 comments on commit 540c204

Please sign in to comment.