[FORMATTING][NTOS][HAL][DRIVERS][SDK] Fix trailing spaces
[reactos.git] / drivers / filesystems / reiserfs / src / nls / nls_base.c
index 3f47f47..3c92c32 100644 (file)
@@ -52,7 +52,7 @@ utf8_mbtowc(wchar_t *p, const __u8 *s, int n)
        long l;
        int c0, c, nc;
        struct utf8_table *t;
-  
+
        nc = 0;
        c0 = *s;
        l = c0;
@@ -110,10 +110,10 @@ utf8_wctomb(__u8 *s, wchar_t wc, int maxlen)
        long l;
        int c, nc;
        struct utf8_table *t;
-  
+
        if (s == 0)
                return 0;
-  
+
        l = wc;
        nc = 0;
        for (t = utf8_table; t->cmask && maxlen; t++, maxlen--) {
@@ -179,7 +179,7 @@ int register_nls(struct nls_table * nls)
        nls->next = tables;
        tables = nls;
        spin_unlock(&nls_lock);
-       return 0;       
+       return 0;
 }
 
 int unregister_nls(struct nls_table * nls)
@@ -230,7 +230,7 @@ struct nls_table *load_nls(char *charset)
                        charset);
                return NULL;
        }
-               
+
        sprintf(buf, "nls_%s", charset);
        ret = request_module(buf);
        if (ret != 0) {
@@ -484,7 +484,7 @@ static struct nls_table default_table = {
 struct nls_table *load_nls_default(void)
 {
        struct nls_table *default_nls;
-       
+
        default_nls = load_nls(CONFIG_NLS_DEFAULT);
        if (default_nls != NULL)
                return default_nls;