Am 09.12.2016 um 00:58 schrieb Brandon Williams:
+char *real_pathdup(const char *path)
+{
+ struct strbuf realpath = STRBUF_INIT;
+ char *retval = NULL;
+
+ if(strbuf_realpath(&realpath, path, 0))
Style nit: blank after if is missing. -- Hannes

