From 7a44cc41f48be544c8a54514eaa9ecf7efb884e3 Mon Sep 17 00:00:00 2001 From: nulltoken Date: Tue, 5 Jul 2011 11:00:32 -0700 Subject: [PATCH] repository: fix typo'ed assert --- src/repository.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/repository.c b/src/repository.c index 2cdb1c480..c9c28a944 100644 --- a/src/repository.c +++ b/src/repository.c @@ -429,7 +429,7 @@ static int read_gitfile(char *path_out, const char *file_path, const char *base_ int error, end_offset; char *data; - assert(path_out && file_path && path_out); + assert(path_out && file_path && base_path); error = git_futils_readbuffer(&file, file_path);