summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--linux/LinuxProcess.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/LinuxProcess.c b/linux/LinuxProcess.c
index 7d4657ae..e7070dca 100644
--- a/linux/LinuxProcess.c
+++ b/linux/LinuxProcess.c
@@ -358,7 +358,7 @@ void LinuxProcess_makeCommandStr(Process* this) {
/* Check for any changed fields since we last built this string */
if (mc->cmdlineChanged || mc->commChanged || mc->exeChanged) {
free(mc->str);
- /* Accomodate the column text, two field separators and terminating NUL */
+ /* Accommodate the column text, two field separators and terminating NUL */
mc->str = xCalloc(1, mc->maxLen + 2*SEPARATOR_LEN + 1);
}