Removed void casts for ignored return values of function calls.
[mmh] / sbr / context_read.c
index 4f74499..57653ea 100644 (file)
@@ -97,7 +97,7 @@ context_read(void)
                adios(NULL, "Your `%s' profile file does not contain a valid path entry.", defpath);
 
        if (*cp != '/')
-               (void)snprintf(nd = buf, sizeof(buf), "%s/%s", mypath, cp);
+               snprintf(nd = buf, sizeof(buf), "%s/%s", mypath, cp);
        else
                nd = cp;