Skip to content

Commit 7b4af5a

Browse files
author
doktor.yak
committed
typo fixes
1 parent b9a3bd2 commit 7b4af5a

File tree

2 files changed

+10
-420
lines changed

2 files changed

+10
-420
lines changed

bearpat-ui/ui-export.c

+9-4
Original file line numberDiff line numberDiff line change
@@ -408,9 +408,9 @@ gboolean event_savesurf(GtkWidget *widget, gpointer data) {
408408
add_arg(matname3);
409409
add_arg("transform");
410410
add_arg("setmat");
411-
add_arg(matrix4 = g_strdup_printf("%f,0,0,0"
412-
"0,%f,0,0"
413-
"0,0,%f,%f", cres, rres,sres,offset));
411+
add_arg(matrix4 = g_strdup_printf("%f,0,0,0,"
412+
"0,%f,0,0,"
413+
"0,0,%f,%f", cres, rres,sres,offset));
414414
add_arg("transform");
415415
}
416416
}
@@ -423,7 +423,12 @@ gboolean event_savesurf(GtkWidget *widget, gpointer data) {
423423
add_arg("end");
424424

425425
g_message("run surface export script ( %s )", argv[0]);
426-
426+
/*
427+
int index;
428+
for (index=1; (index < 256) && argv[index]; index++) {
429+
g_message(" %s ", argv[index]);
430+
}
431+
*/
427432
int fdes;
428433
if (!g_spawn_async_with_pipes(NULL, // cwd
429434
argv,

0 commit comments

Comments
 (0)