From 826aae15a2f689e53617e5bb1d9e6647715c69db Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 8 Aug 2019 15:24:18 +0200 Subject: [PATCH] server: A spelling and slight rewording fix in a comment. Signed-off-by: Francois Gouget Signed-off-by: Alexandre Julliard --- server/async.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/async.c b/server/async.c index 94cac47f1b9..5486601c675 100644 --- a/server/async.c +++ b/server/async.c @@ -50,7 +50,7 @@ struct async struct iosb *iosb; /* I/O status block */ obj_handle_t wait_handle; /* pre-allocated wait handle */ unsigned int signaled :1; - unsigned int pending :1; /* request is succesfully queued, but pending */ + unsigned int pending :1; /* request successfully queued, but pending */ unsigned int direct_result :1;/* a flag if we're passing result directly from request instead of APC */ struct completion *completion; /* completion associated with fd */ apc_param_t comp_key; /* completion key associated with fd */