Revert r35003. It was just an extra semicolon

This commit is contained in:
Joshua Leung
2011-02-20 23:21:15 +00:00
parent 187f9c5874
commit 55a0e21a03

View File

@@ -477,12 +477,12 @@ void POSELIB_OT_pose_add (wmOperatorType *ot)
/* can be called with C == NULL */
static EnumPropertyItem *poselib_stored_pose_itemf(bContext *C, PointerRNA *UNUSED(ptr), int *free)
{
Object *ob = get_poselib_object(C);
bAction *act = (ob) ? ob->poselib : NULL;
TimeMarker *marker;
EnumPropertyItem *item= NULL, item_tmp= {0};
int totitem= 0;
int i= 0;
Object *ob = get_poselib_object(C);
bAction *act = (ob) ? ob->poselib : NULL;
if (C == NULL) {
return DummyRNA_DEFAULT_items;