mirror of https://github.com/GNOME/gimp.git
tools: increase buffer size in gimptool from 1000 to 4096
This commit is contained in:
parent
c865d8f141
commit
fd34fee7f5
|
@ -127,7 +127,7 @@ one_line_output (const gchar *program,
|
||||||
{
|
{
|
||||||
gchar *command = g_strconcat (program, " ", args, NULL);
|
gchar *command = g_strconcat (program, " ", args, NULL);
|
||||||
FILE *pipe = popen (command, "r");
|
FILE *pipe = popen (command, "r");
|
||||||
gchar line[1000];
|
gchar line[4096];
|
||||||
|
|
||||||
if (pipe == NULL)
|
if (pipe == NULL)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue