Skip to content

Commit

Permalink
Merge pull request #1252 from eht16/fix_cppcheck_warnings_v2
Browse files Browse the repository at this point in the history
ProjectOrganizer: Initialise "is_header" variable
  • Loading branch information
techee authored May 23, 2023
2 parents 1c64b32 + 6e697f2 commit 5b8bf65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projectorganizer/src/prjorg-utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ gchar *find_header_source(GeanyDocument *doc)
{
GSList *header_patterns, *source_patterns;
gboolean known_type = TRUE;
gboolean is_header;
gboolean is_header = FALSE;
gchar *found_name = NULL;

if (!doc || !doc->file_name)
Expand Down

0 comments on commit 5b8bf65

Please sign in to comment.