summaryrefslogtreecommitdiff
path: root/remote.go
diff options
context:
space:
mode:
authorCarlos Martín Nieto <[email protected]>2014-10-15 17:10:35 +0200
committerCarlos Martín Nieto <[email protected]>2014-10-15 17:10:35 +0200
commit68bd3bbdd7f0d528c6576076bc3b53cf666d4bb0 (patch)
treefae5c35a99a4a7b4312646c020ee5c07fc68e2d3 /remote.go
parentc77c8f6fb9e5db0bbf18d228cd0b233277d14ea0 (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.
Diffstat (limited to 'remote.go')
-rw-r--r--remote.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/remote.go b/remote.go
index 132c069..266eb77 100644
--- a/remote.go
+++ b/remote.go
@@ -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);