diff options
| author | Carlos Martín Nieto <[email protected]> | 2014-10-15 17:10:35 +0200 |
|---|---|---|
| committer | Carlos Martín Nieto <[email protected]> | 2014-10-15 17:10:35 +0200 |
| commit | 68bd3bbdd7f0d528c6576076bc3b53cf666d4bb0 (patch) | |
| tree | fae5c35a99a4a7b4312646c020ee5c07fc68e2d3 | |
| parent | c77c8f6fb9e5db0bbf18d228cd0b233277d14ea0 (diff) | |
Fix header name
It turns out that some systems have a strings.h which includes string.h,
which does not happen on GNU systems.
| -rw-r--r-- | remote.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ package git /* #include <git2.h> -#include <strings.h> +#include <string.h> extern void _go_git_setup_callbacks(git_remote_callbacks *callbacks); |
