diff options
author | TingPing <TingPing@users.noreply.github.com> | 2013-10-05 09:31:34 -0700 |
---|---|---|
committer | TingPing <TingPing@users.noreply.github.com> | 2013-10-05 09:31:34 -0700 |
commit | 435e8881ed7a21014d70069752d64267e92b7735 (patch) | |
tree | d467340d9aa1eb42eb3efd418012581c2680ebf0 /plugins/sysinfo/xsys.c | |
parent | b1df2f43aa0af55614d29f44064233024f0b29a8 (diff) | |
parent | cc6de3f6651e3d72bb4b1a3a84c00581f8d73a01 (diff) |
Merge pull request #787 from siduction/master
some Typos causing lintian moaning: {R,r}eciev.. -> {R,r}eceiv..
Diffstat (limited to 'plugins/sysinfo/xsys.c')
-rw-r--r-- | plugins/sysinfo/xsys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sysinfo/xsys.c b/plugins/sysinfo/xsys.c index 9e444df9..21ba6d8f 100644 --- a/plugins/sysinfo/xsys.c +++ b/plugins/sysinfo/xsys.c @@ -598,7 +598,7 @@ netdata_cb (char *word[], char *word_eol[], void *userdata) bytes_recv /= 1024; bytes_sent /= 1024; - snprintf (netdata, bsize, "%s: %.1f MB Recieved, %.1f MB Sent", word[2], (double)bytes_recv/1024.0, (double)bytes_sent/1024.0); + snprintf (netdata, bsize, "%s: %.1f MB Received, %.1f MB Sent", word[2], (double)bytes_recv/1024.0, (double)bytes_sent/1024.0); hexchat_pluginpref_get_str (ph, "format", format); format_output ("Netdata", netdata, format); |