Skip to content

Commit

Permalink
Fix warning: argument 1 null where non-null expected [-Wnonnull] dete…
Browse files Browse the repository at this point in the history
…cted on Ubuntu 24.04
  • Loading branch information
fspindle committed Apr 21, 2024
1 parent d0aab60 commit a4b43f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3rdparty/apriltag/common/image_u8x3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ int image_u8x3_write_pnm(const image_u8x3_t *im, const char *path)

if (f == NULL) {
res = -1;
fclose(f);
//fclose(f);
return res;
// goto finish;
}
Expand Down

0 comments on commit a4b43f3

Please sign in to comment.