summaryrefslogtreecommitdiff
path: root/src/glibext/linesegment.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/glibext/linesegment.h')
-rw-r--r--src/glibext/linesegment.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/glibext/linesegment.h b/src/glibext/linesegment.h
index cb809fc..3585ffb 100644
--- a/src/glibext/linesegment.h
+++ b/src/glibext/linesegment.h
@@ -152,22 +152,18 @@ typedef enum _BufferExportType
/* Elements sur lesquels une exportation peut s'appuyer */
typedef struct _buffer_export_context
{
- union
- {
- int fd; /* Flux ouvert en écriture */
-
- };
+ int fd; /* Flux ouvert en écriture */
union
{
/* BET_TEXT */
- const char *sep; /* Séparation entre colonnes */
+ char *sep; /* Séparation entre colonnes */
/* BET_HTML */
struct
{
- const char *font_name; /* Police d'impression */
- const char *bg_color; /* Fond du tableau HTML */
+ char *font_name; /* Police d'impression */
+ char *bg_color; /* Fond du tableau HTML */
};