mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
advpack/tests: Write-strings warnings fix.
This commit is contained in:
parent
b843ce55c7
commit
b3cf216d9b
@ -381,6 +381,10 @@ static void create_cab_file(void)
|
||||
CCAB cabParams;
|
||||
HFCI hfci;
|
||||
ERF erf;
|
||||
static CHAR a_txt[] = "a.txt",
|
||||
b_txt[] = "b.txt",
|
||||
testdir_c_txt[] = "testdir\\c.txt",
|
||||
testdir_d_txt[] = "testdir\\d.txt";
|
||||
BOOL res;
|
||||
|
||||
set_cab_parameters(&cabParams);
|
||||
@ -391,10 +395,10 @@ static void create_cab_file(void)
|
||||
|
||||
ok(hfci != NULL, "Failed to create an FCI context\n");
|
||||
|
||||
add_file(hfci, "a.txt");
|
||||
add_file(hfci, "b.txt");
|
||||
add_file(hfci, "testdir\\c.txt");
|
||||
add_file(hfci, "testdir\\d.txt");
|
||||
add_file(hfci, a_txt);
|
||||
add_file(hfci, b_txt);
|
||||
add_file(hfci, testdir_c_txt);
|
||||
add_file(hfci, testdir_d_txt);
|
||||
|
||||
res = FCIFlushCabinet(hfci, FALSE, get_next_cabinet, progress);
|
||||
ok(res, "Failed to flush the cabinet\n");
|
||||
|
Loading…
Reference in New Issue
Block a user