GNOME Bugzilla – Bug 778299
Variable-type consistency in gcal-window.c
Last modified: 2017-02-09 12:37:18 UTC
The variable 'view' was declared as 'guint' but was later used as 'gint'. There is no type consistency in 'view'.
** in gcal-window.c
Created attachment 345129 [details] [review] gcal-window: Earlier 'view' was declared as a 'guint' but was used as 'gint'. This patch changes the declaration of 'view' to gint32.
Review of attachment 345129 [details] [review]: The commit message needs improvement. The title is huge, and there is no message below. Check [1] to see how the message is expected to be. [1] https://wiki.gnome.org/Newcomers/CodeContributionWorkflow#Commit_guidelines
Created attachment 345308 [details] [review] gcal-window: Declare 'view' as type guint32 Earlier 'view' was declared as a 'guint' but was used as 'gint'. This patch changes the declaration of 'view' to gint32.
Thanks for the patch! Attachment 345308 [details] pushed as 6ce4574 - gcal-window: Declare 'view' as type guint32