Skip to content

Commit

Permalink
r3.out.v5d: fix broken LITTLE ifdef-else macro in read_float4() (OSGe…
Browse files Browse the repository at this point in the history
…o#4676)

Fix regression introduced by 8dced26.
  • Loading branch information
nilason authored Nov 9, 2024
1 parent 8dced26 commit 8c4f244
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion raster3d/r3.out.v5d/binio.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,13 +202,14 @@ int read_float4(int f, float *x)
else {
return 0;
}
#endif
#else
if (read(f, x, 4) == 4) {
return 1;
}
else {
return 0;
}
#endif
}

/*
Expand Down

0 comments on commit 8c4f244

Please sign in to comment.