diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2014-12-06 12:42:41 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2014-12-06 12:42:41 +0100 |
commit | 9a5ede46033e225b870cd289221ac0608540a6d3 (patch) | |
tree | 105e6528f4fff398a5387f716cd54a0db0a8f9a1 | |
parent | 0d3b80f04a1caee51b9995c9626838f85295bb06 (diff) |
Fix coding style
-rw-r--r-- | procfs/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/procfs/main.c b/procfs/main.c index 0593f416..320f55b2 100644 --- a/procfs/main.c +++ b/procfs/main.c @@ -273,7 +273,7 @@ error_t netfs_get_source (struct protid *cred, char *source, size_t source_len) { if (! cred) return EOPNOTSUPP; - snprintf(source, source_len, "proc"); + snprintf (source, source_len, "proc"); return 0; } |