cli: make 'value' in NmcOutputField non const

This commit is contained in:
Jiří Klimeš
2013-03-05 15:50:11 +01:00
committed by Dan Winship
parent 6ff924f82f
commit 113d358ce5
8 changed files with 155 additions and 155 deletions

View File

@@ -72,7 +72,7 @@ typedef struct {
const char *name; /* Field's name */
const char *name_l10n; /* Field's name for translation */
int width; /* Width in screen columns */
const void *value; /* Value of current field - char* or char** */
void *value; /* Value of current field - char* or char** */
guint32 flags; /* Flags */
} NmcOutputField;