Skip to content

Commit

Permalink
Remove unused global variable UnfoObjListIt (RhBug:1793424)
Browse files Browse the repository at this point in the history
This global header file variable wasn't declared using extern keyword
which was causing problems with gcc 10 (gcc 10 no longer ignores this
error).

https://bugzilla.redhat.com/show_bug.cgi?id=1793424
  • Loading branch information
kontura authored and lukash committed Jan 30, 2020
1 parent 18da728 commit 3237f44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcomps/src/comps_objlist.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ typedef struct COMPS_ObjListIt COMPS_ObjListIt;
struct COMPS_ObjListIt {
COMPS_Object *comps_obj;
COMPS_ObjListIt *next;
} UnfoObjListIt;
};


/** COMPS_Object derivate representing category element in comps.xml structure*/
Expand Down

0 comments on commit 3237f44

Please sign in to comment.