summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index f67b6c57..3c405278 100644
--- a/src/main.c
+++ b/src/main.c
@@ -399,7 +399,9 @@ main (int argc, char **argv)
tmp = displays;
while (tmp != NULL)
{
- meta_display_close (tmp->data);
+ guint32 timestamp;
+ timestamp = CurrentTime; /* I doubt correct timestamps matter here */
+ meta_display_close (tmp->data, timestamp);
tmp = tmp->next;
}
g_slist_free (displays);