Fix typo / type error in FFI code example (#327)

pull/330/head
khollbach 3 years ago committed by GitHub
parent c05c452b36
commit 66d097d3d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -709,7 +709,7 @@ fn main() {
And the code on the C side looks like this:
```c
void register(void (*f)(int (*)(int), int)) {
void register(int (*f)(int (*)(int), int)) {
...
}
```

Loading…
Cancel
Save