]> Shamusworld >> Repos - rmac/blobdiff - expr.c
Version bump for last commits; now at v2.0.6.
[rmac] / expr.c
diff --git a/expr.c b/expr.c
index 3a23e6e3cf68d4949ef1372ca98da1defecac7f6..63d63ae2552e72f6fdf6dc77ee62fcc02decaa96 100644 (file)
--- a/expr.c
+++ b/expr.c
@@ -183,17 +183,17 @@ int expr1(void)
                                for(i=0; nthpath("RMACPATH", i, buf1)!= 0; i++)
                                {
                                        fd = strlen(buf1);
-                                       
+
                                        // Append path char if necessary
                                        if ((fd > 0) && (buf1[fd - 1] != SLASHCHAR))
                                                strcat(buf1, SLASHSTRING);
-                                       
+
                                        strcat(buf1, string[*tok]);
-                                       
+
                                        if ((fd = open(buf1, _OPEN_INC)) >= 0)
                                                goto allright;
                                }
-                               
+
                                return error("cannot open: \"%s\"", string[tok[1]]);
                        }