upload-pack.c: do not pass confusing cb_data to mark_our_ref()
[git/gitweb.git] / compat / mkdtemp.c
blob11361195925c674423309d40f343c88f58b7bc1e
1 #include "../git-compat-util.h"
3 char *gitmkdtemp(char *template)
5 if (!*mktemp(template) || mkdir(template, 0700))
6 return NULL;
7 return template;