[PATCH 0/5] MR1126: Spelling and trailing linefeed fixes.
From: Francois Gouget <fgouget(a)free.fr> --- dlls/dbghelp/dwarf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dbghelp/dwarf.c b/dlls/dbghelp/dwarf.c index 4671174d3bb..f8b3f8d717c 100644 --- a/dlls/dbghelp/dwarf.c +++ b/dlls/dbghelp/dwarf.c @@ -1953,7 +1953,7 @@ static void dwarf2_parse_variable(dwarf2_subprogram_t* subpgm, loc.offset += subpgm->ctx->module_ctx->load_offset; if (subpgm->top_func) { - if (ext.u.uvalue) WARN("unexpected global inside a functionn"); + if (ext.u.uvalue) WARN("unexpected global inside a function\n"); symt_add_func_local(subpgm->ctx->module_ctx->module, subpgm->current_func, DataIsStaticLocal, &loc, subpgm->current_block, param_type, dwarf2_get_cpp_name(di, name.u.string)); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/1126
From: Francois Gouget <fgouget(a)free.fr> --- dlls/d3d10core/tests/d3d10core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/d3d10core/tests/d3d10core.c b/dlls/d3d10core/tests/d3d10core.c index 74f689630eb..cd14371197f 100644 --- a/dlls/d3d10core/tests/d3d10core.c +++ b/dlls/d3d10core/tests/d3d10core.c @@ -4813,7 +4813,7 @@ static void test_pipeline_statistics_query(void) get_query_data(query, &data, sizeof(data)); /* WARP devices randomly return all-zeroed structures as if the draw did not happen. Flushing and - * sleeping a second before ending the query reduces the likelyhood of hitting the bug a lot, but + * sleeping a second before ending the query reduces the likelihood of hitting the bug a lot, but * does not eliminate it entirely. To make things work reliably ignore such broken results. */ if (is_warp_device(device) && !memcmp(&data, &zero_data, sizeof(data))) { -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/1126
From: Francois Gouget <fgouget(a)free.fr> --- dlls/dbghelp/dbghelp_private.h | 4 ++-- dlls/dbghelp/dwarf.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dlls/dbghelp/dbghelp_private.h b/dlls/dbghelp/dbghelp_private.h index a5ea41ae014..5e63d949a43 100644 --- a/dlls/dbghelp/dbghelp_private.h +++ b/dlls/dbghelp/dbghelp_private.h @@ -271,11 +271,11 @@ struct symt_data * address in one of its ranges * * Notes: - * (A): shall evolve but storage is native is awkward: from PGO testing, the + * (A): shall evolve but storage in native is awkward: from PGO testing, the * top function is stored with its first range of address; all the others * are stored as blocks, children of compiland, but which lexical parent * is the top function. This breaks the natural assumption that - * children <> lexical parent is symetrical. + * children <> lexical parent is symmetrical. * (B): see dwarf.c for some gory discrepancies between native & builtin * DbgHelp. */ diff --git a/dlls/dbghelp/dwarf.c b/dlls/dbghelp/dwarf.c index f8b3f8d717c..f9ffa374dbc 100644 --- a/dlls/dbghelp/dwarf.c +++ b/dlls/dbghelp/dwarf.c @@ -2201,7 +2201,7 @@ static void dwarf2_parse_subprogram_block(dwarf2_subprogram_t* subpgm, } /* Dwarf tends to keep the structure of the C/C++ program, and emits DW_TAG_lexical_block - * for every block in source program. + * for every block the in source program. * With inlining and other optimizations, code for a block no longer lies in a contiguous * chunk of memory. It's hence described with (potentially) multiple chunks of memory. * Then each variable of each block is attached to its block. (A) @@ -2217,7 +2217,7 @@ static void dwarf2_parse_subprogram_block(dwarf2_subprogram_t* subpgm, * * DbgHelp only exposes a contiguous chunk of memory for a block. * - * => Store internaly all the ranges of addresses in a block, but only expose the size + * => Store internally all the ranges of addresses in a block, but only expose the size * of the first chunk of memory. * Otherwise, it would break the rule: blocks' chunks don't overlap. * Note: This could mislead some programs using the blocks' address and size information. -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/1126
From: Francois Gouget <fgouget(a)free.fr> --- dlls/msdasql/session.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msdasql/session.c b/dlls/msdasql/session.c index 27d952276e5..67dc30bf09e 100644 --- a/dlls/msdasql/session.c +++ b/dlls/msdasql/session.c @@ -263,7 +263,7 @@ static BOOL is_variable_length(SQLSMALLINT type) return FALSE; } -static BOOL is_fixed_legnth(SQLSMALLINT type) +static BOOL is_fixed_length(SQLSMALLINT type) { switch(type) { @@ -1059,7 +1059,7 @@ static HRESULT WINAPI rowset_colsinfo_GetColumnInfo(IColumnsInfo *iface, DBORDIN if (ColumnDataNullable) dbcolumn[i].dwFlags |= DBCOLUMNFLAGS_ISNULLABLE | DBCOLUMNFLAGS_MAYBENULL; - if (is_fixed_legnth(ColumnDataType)) + if (is_fixed_length(ColumnDataType)) dbcolumn[i].dwFlags |= DBCOLUMNFLAGS_ISFIXEDLENGTH; ret = SQLColAttribute(rowset->hstmt, i+1, SQL_DESC_SCALE, NULL, 0, NULL, &length); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/1126
From: Francois Gouget <fgouget(a)free.fr> --- dlls/rpcrt4/tests/cstub.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/rpcrt4/tests/cstub.c b/dlls/rpcrt4/tests/cstub.c index d44ee36088c..794d85744ef 100644 --- a/dlls/rpcrt4/tests/cstub.c +++ b/dlls/rpcrt4/tests/cstub.c @@ -1534,7 +1534,7 @@ static void test_ChannelBufferRefCount(IPSFactoryBuffer *ppsf) * so it's possible these are freed out from under it. * E.g. an event sink might unadvise upon receiving the event it was waiting for; * this unadvise could be reentrant to Invoke because SendReceive pumps STA messages. - * The source would then erase that conection point entry and Release the proxy. */ + * The source would then erase that connection point entry and Release the proxy. */ IRpcProxyBuffer_Disconnect(proxy_buffer); ok(test_chanbuf.RefCount == 1, "got %ld\n", test_chanbuf.RefCount); IRpcProxyBuffer_Release(proxy_buffer); @@ -1542,7 +1542,7 @@ static void test_ChannelBufferRefCount(IPSFactoryBuffer *ppsf) ok(refs == 0, "got %ld\n", refs); ok(test_chanbuf.RefCount == 1, "got %ld\n", test_chanbuf.RefCount); - /* NdrProxyFreeBuffer must not dereference the the now-freed proxy_if1, + /* NdrProxyFreeBuffer must not dereference the now-freed proxy_if1, * yet should still free the remaining reference on test_chanbuf */ NdrProxyFreeBuffer(proxy_if1, &stubMessage); ok(test_chanbuf.RefCount == 0, "got %ld\n", test_chanbuf.RefCount); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/1126
This merge request was approved by Zebediah Figura. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1126
participants (3)
-
Francois Gouget -
Francois Gouget (@fgouget) -
Zebediah Figura (@zfigura)