mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 11:15:13 +03:00
13 lines
680 B
Diff
13 lines
680 B
Diff
diff --git a/src/config-editor.vala b/src/config-editor.vala
|
|
index f40c740..965dfee 100644
|
|
--- a/src/config-editor.vala
|
|
+++ b/src/config-editor.vala
|
|
@@ -33,7 +33,7 @@ private class Boxes.MachineConfigEditor: Gtk.ScrolledWindow {
|
|
var snapshot = yield machine.create_snapshot (_("Configuration modified "));
|
|
try {
|
|
var config = snapshot.get_config (0);
|
|
- snapshot_timestamp = config.get_creation_time ();
|
|
+ snapshot_timestamp = (long) config.get_creation_time ();
|
|
} catch (GLib.Error error) {
|
|
warning ("Failed to obtain snapshot configuration: %s", error.message);
|
|
}
|