fixed another issue with site builder, a4.0.13 ready
This commit is contained in:
parent
b9fb560948
commit
75e8b2d512
|
@ -27,7 +27,7 @@ load_enriched_text(Partition *part, char *directory, char *filename){
|
||||||
char space[256];
|
char space[256];
|
||||||
String fname = make_fixed_width_string(space);
|
String fname = make_fixed_width_string(space);
|
||||||
append_sc(&fname, directory);
|
append_sc(&fname, directory);
|
||||||
append_sc(&fname, "\\");
|
append_sc(&fname, "/");
|
||||||
append_sc(&fname, filename);
|
append_sc(&fname, filename);
|
||||||
terminate_with_null(&fname);
|
terminate_with_null(&fname);
|
||||||
|
|
||||||
|
|
|
@ -129,7 +129,7 @@ assert_files_are_equal(char *directory, char *filename1, char *filename2){
|
||||||
char space[256];
|
char space[256];
|
||||||
String name = make_fixed_width_string(space);
|
String name = make_fixed_width_string(space);
|
||||||
append_sc(&name, directory);
|
append_sc(&name, directory);
|
||||||
append_sc(&name, "\\");
|
append_sc(&name, "/");
|
||||||
append_sc(&name, filename1);
|
append_sc(&name, filename1);
|
||||||
terminate_with_null(&name);
|
terminate_with_null(&name);
|
||||||
|
|
||||||
|
@ -137,7 +137,7 @@ assert_files_are_equal(char *directory, char *filename1, char *filename2){
|
||||||
|
|
||||||
name.size = 0;
|
name.size = 0;
|
||||||
append_sc(&name, directory);
|
append_sc(&name, directory);
|
||||||
append_sc(&name, "\\");
|
append_sc(&name, "/");
|
||||||
append_sc(&name, filename2);
|
append_sc(&name, filename2);
|
||||||
terminate_with_null(&name);
|
terminate_with_null(&name);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue