summaryrefslogtreecommitdiff
path: root/include/git2/stash.h
diff options
context:
space:
mode:
authorpunkymaniac <punkymaniac@protonmail.ch>2021-09-09 19:49:04 +0200
committerpunkymaniac <punkymaniac@protonmail.ch>2021-09-09 19:49:04 +0200
commit379c46463cbdd73e04c5efc180309d4600e56624 (patch)
tree0c56f001ecceba8a072f896f01bd7750f9c4034d /include/git2/stash.h
parentf1b89a201e9329e6df48f8d6cf320781570c936a (diff)
downloadlibgit2-379c46463cbdd73e04c5efc180309d4600e56624.tar.gz
Fix coding style for pointer
Make some syntax change to follow coding style.
Diffstat (limited to 'include/git2/stash.h')
-rw-r--r--include/git2/stash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/stash.h b/include/git2/stash.h
index 625e51b4b..795920ebc 100644
--- a/include/git2/stash.h
+++ b/include/git2/stash.h
@@ -200,7 +200,7 @@ GIT_EXTERN(int) git_stash_apply(
*/
typedef int GIT_CALLBACK(git_stash_cb)(
size_t index,
- const char* message,
+ const char *message,
const git_oid *stash_id,
void *payload);