summaryrefslogtreecommitdiffstats
path: root/common/commands
diff options
context:
space:
mode:
Diffstat (limited to 'common/commands')
-rw-r--r--common/commands/commandcompletion.fbs6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/commands/commandcompletion.fbs b/common/commands/commandcompletion.fbs
index 9583108..5330b4f 100644
--- a/common/commands/commandcompletion.fbs
+++ b/common/commands/commandcompletion.fbs
@@ -1,9 +1,9 @@
1namespace Akonadi2; 1namespace Akonadi2;
2 2
3table CommandCompletion { 3table CommandCompletion {
4 id: ulong 4 id: ulong;
5 success: bool 5 success: bool = true;
6 log: ulong = 0 6 log: ulong = 0;
7} 7}
8 8
9root_type CommandCompletion; 9root_type CommandCompletion;