summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2010-10-15 10:24:41 +0200
committerHans de Goede <hdegoede@redhat.com>2010-10-15 10:24:41 +0200
commit75997546aa64bc12e2faf93a5abc2061ca06c4e2 (patch)
tree7c42f2d29737029cb766eae950685ef712063a28
parent28b00fae3671932e683342bbed4f2c56624cf36e (diff)
downloadvd_agent-75997546aa64bc12e2faf93a5abc2061ca06c4e2.tar.gz
vd_agent-75997546aa64bc12e2faf93a5abc2061ca06c4e2.tar.xz
vd_agent-75997546aa64bc12e2faf93a5abc2061ca06c4e2.zip
too much -> too many
-rw-r--r--vdagent-x11.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vdagent-x11.c b/vdagent-x11.c
index 4f14648..cb54806 100644
--- a/vdagent-x11.c
+++ b/vdagent-x11.c
@@ -650,7 +650,7 @@ static void vdagent_x11_handle_targets_notify(struct vdagent_x11 *x11,
x11->clipboard_type_count++;
if (x11->clipboard_type_count ==
sizeof(x11->clipboard_agent_types)/sizeof(uint32_t)) {
- fprintf(stderr, "handle_targets_notify: too much types\n");
+ fprintf(stderr, "handle_targets_notify: too many types\n");
break;
}
}
@@ -704,7 +704,7 @@ static void vdagent_x11_send_targets(struct vdagent_x11 *x11, XEvent *event)
targets[target_count] = x11->clipboard_formats[j].atoms[k];
target_count++;
if (target_count == sizeof(targets)/sizeof(Atom)) {
- fprintf(stderr, "send_targets: too much targets\n");
+ fprintf(stderr, "send_targets: too many targets\n");
goto exit_loop;
}
}
@@ -853,7 +853,7 @@ void vdagent_x11_clipboard_grab(struct vdagent_x11 *x11, uint32_t *types,
uint32_t type_count)
{
if (type_count > sizeof(x11->clipboard_agent_types)/sizeof(uint32_t)) {
- fprintf(stderr, "x11_clipboard_grab: too much types\n");
+ fprintf(stderr, "x11_clipboard_grab: too many types\n");
type_count = sizeof(x11->clipboard_agent_types)/sizeof(uint32_t);
}