mirror of https://github.com/GNOME/gimp.git
put operators on end of line in long expressions
This fixes commit 3a151bd1a9
, GIMP is
deviating from the GNU coding style here.
This commit is contained in:
parent
56d6c1d432
commit
4ec7def1d0
|
@ -886,9 +886,9 @@ gimp_data_set_folder_tags (GimpData *data,
|
||||||
{
|
{
|
||||||
size_t top_directory_len = strlen (top_directory);
|
size_t top_directory_len = strlen (top_directory);
|
||||||
|
|
||||||
g_return_if_fail (g_str_has_prefix (dirname, top_directory)
|
g_return_if_fail (g_str_has_prefix (dirname, top_directory) &&
|
||||||
&& (dirname[top_directory_len] == '\0'
|
(dirname[top_directory_len] == '\0' ||
|
||||||
|| G_IS_DIR_SEPARATOR (dirname[top_directory_len])));
|
G_IS_DIR_SEPARATOR (dirname[top_directory_len])));
|
||||||
|
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue