aboutsummaryrefslogtreecommitdiff
path: root/inotify_c.c
diff options
context:
space:
mode:
Diffstat (limited to 'inotify_c.c')
-rw-r--r--inotify_c.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/inotify_c.c b/inotify_c.c
index e63ebfb..0521b95 100644
--- a/inotify_c.c
+++ b/inotify_c.c
@@ -14,12 +14,12 @@
* The result should be freed.
*/
char* clstocs(CleanString* cs) {
- char* s = calloc(CleanStringLength(cs) + 1, 1);
- uint8_t i;
- for (i = 0; i < CleanStringLength(cs); i++)
- s[i] = CleanStringCharacters(cs)[i];
- s[i] = 0;
- return s;
+ char* s = calloc(CleanStringLength(cs) + 1, 1);
+ uint8_t i;
+ for (i = 0; i < CleanStringLength(cs); i++)
+ s[i] = CleanStringCharacters(cs)[i];
+ s[i] = 0;
+ return s;
}
/** The empty string, as a CleanString */