1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
--- Cynthiune-0.9.5/Bundles/FLACTags/FLACTags.m
+++ Cynthiune-0.9.5/Bundles/FLACTags/FLACTags.m
@@ -72,7 +72,9 @@
value = equalsign + 1;
position = keyPositionInArray (key);
if (position > -1)
- SET (*arrayOfValues[position], [NSString stringWithUTF8String: value]);
+ {
+ SET (*arrayOfValues[position], [NSString stringWithUTF8String: value]);
+ }
}
free (key);
}
--- Cynthiune-0.9.5/Bundles/VorbisTags/VorbisTags.m
+++ Cynthiune-0.9.5/Bundles/VorbisTags/VorbisTags.m
@@ -150,7 +150,9 @@
}
if (cComment)
- SET (*string, [NSString stringWithUTF8String: cComment]);
+ {
+ SET (*string, [NSString stringWithUTF8String: cComment]);
+ }
}
}
--- Cynthiune-0.9.5/Bundles/XMMSInput/XMMSInput.m
+++ Cynthiune-0.9.5/Bundles/XMMSInput/XMMSInput.m
@@ -329,7 +329,9 @@
// inputPlugin->output->open_audio (FMT_S16_LE,44100, 2);
result = (inputPlugin->is_our_file (name) == 1);
if (result)
- SET (filename, fileName);
+ {
+ SET (filename, fileName);
+ }
return result;
}
|