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 | |
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')
-rw-r--r-- | plugins/perl/perl.c | 6 | ||||
-rw-r--r-- | plugins/sysinfo/xsys.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/perl/perl.c b/plugins/perl/perl.c index 00924892..af7865d7 100644 --- a/plugins/perl/perl.c +++ b/plugins/perl/perl.c @@ -458,7 +458,7 @@ server_cb (char *word[], char *word_eol[], void *userdata) return HEXCHAT_EAT_NONE; /* hexchat_printf (ph, */ - /* "Recieved %d words in server callback", av_len (wd)); */ + /* "Received %d words in server callback", av_len (wd)); */ PUSHMARK (SP); XPUSHs (newRV_noinc ((SV *) array2av (word))); XPUSHs (newRV_noinc ((SV *) array2av (word_eol))); @@ -506,7 +506,7 @@ command_cb (char *word[], char *word_eol[], void *userdata) if (data->depth) return HEXCHAT_EAT_NONE; - /* hexchat_printf (ph, "Recieved %d words in command callback", */ + /* hexchat_printf (ph, "Received %d words in command callback", */ /* av_len (wd)); */ PUSHMARK (SP); XPUSHs (newRV_noinc ((SV *) array2av (word))); @@ -584,7 +584,7 @@ print_cb (char *word[], void *userdata) } } - /*hexchat_printf (ph, "Recieved %d words in print callback", av_len (wd)+1); */ + /*hexchat_printf (ph, "Received %d words in print callback", av_len (wd)+1); */ PUSHMARK (SP); XPUSHs (newRV_noinc ((SV *) wd)); XPUSHs (data->userdata); 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); |