Skip to content

Commit ae0e36e

Browse files
committed
FIX: Consistency
1 parent 9214846 commit ae0e36e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nibabel/freesurfer/io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def _fread3(fobj):
3131
n : int
3232
A 3 byte int
3333
"""
34-
b1, b2, b3 = np.fromfile(fobj, '>u1', 3).astype(int)
34+
b1, b2, b3 = np.fromfile(fobj, '>u1', 3).astype(np.int64)
3535
return (b1 << 16) + (b2 << 8) + b3
3636

3737

0 commit comments

Comments
 (0)