From: Daniele F. <df...@gm...> - 2012-07-19 12:09:02
|
2012/7/19 Hans Petter Selasky: > I have some trouble to get stuff built using cmake. Can someone have a look at > my attached patches and incorporate them? thank you for your patches but it will be easier if you change the subject of your email to reflect its content or is ths still related to gtkpod 1.0.0? and since you are using git, please do proper commits with informative commit messages so you get credit and we get explanations what is the reason of the following change? the same kind of declaration in done in other source files but at least when using autotools gcc is invoked with --std=gnu99 and you are using spaces and tabs inconsistently with surrounding code (I know that in many files it is inconsistent, but that file is ok, so don't break it) - for (gint i = 0; i < g_list_length(gp_iface->track_commands); ++i) { + gint i; + for (i = 0; i < g_list_length(gp_iface->track_commands); ++i) { -- Daniele Forsi |