diff options
-rw-r--r-- | image/backends/iso.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/image/backends/iso.cc b/image/backends/iso.cc index 4563c97..004cba8 100644 --- a/image/backends/iso.cc +++ b/image/backends/iso.cc @@ -407,7 +407,7 @@ public: if(!params) { output_warning("CD backend", "couldn't read ISO params"); } else { - params >> raw_arch; + std::getline(params, raw_arch); } } } |