From 421d6fd9ed039325bdbda8806824f2db6402254d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Berg?= Date: Tue, 3 Nov 2009 04:37:03 +0100 Subject: [PATCH] Bug fix: Wrong usage of dot notation. --- PBGitRevSpecifier.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PBGitRevSpecifier.m b/PBGitRevSpecifier.m index 0fe9093..d350328 100644 --- a/PBGitRevSpecifier.m +++ b/PBGitRevSpecifier.m @@ -23,7 +23,7 @@ - (id) initWithRef: (PBGitRef*) ref { parameters = [NSArray arrayWithObject: ref.ref]; - description = ref.shortName; + description = [ref shortName]; return self; }