advpack/tests: Write-strings warnings fix

Andrew Talbot Andrew.Talbot at talbotville.com
Sun Aug 13 05:48:47 CDT 2006


Changelog:
    advpack/tests: Write-strings warnings fix.

diff -urN a/dlls/advpack/tests/files.c b/dlls/advpack/tests/files.c
--- a/dlls/advpack/tests/files.c	2006-05-23 13:47:31.000000000 +0100
+++ b/dlls/advpack/tests/files.c	2006-08-13 10:05:29.000000000 +0100
@@ -381,6 +381,10 @@
     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 @@
 
     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");



More information about the wine-patches mailing list