Skip to content

Commit 9478726

Browse files
author
Micah Chambers (minerva)
committed
make name u8
1 parent 6c1010c commit 9478726

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ffi/device.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type Result<T> = std::result::Result<T, crate::error::Error>;
1414
pub struct CudaDeviceProp {
1515
// ASCII string identifying the device.
1616
// original name: name[256]
17-
pub name: [i8; 256],
17+
pub name: [u8; 256],
1818

1919
// 16-byte unique identifier.
2020
// original name: uuid

0 commit comments

Comments
 (0)