summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/imagedev/bitbngr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/imagedev/bitbngr.cpp')
-rw-r--r--src/devices/imagedev/bitbngr.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/imagedev/bitbngr.cpp b/src/devices/imagedev/bitbngr.cpp
index 07b88f41386..ae207c81498 100644
--- a/src/devices/imagedev/bitbngr.cpp
+++ b/src/devices/imagedev/bitbngr.cpp
@@ -85,16 +85,16 @@ const software_list_loader &bitbanger_device::get_software_list_loader() const
call_load
-------------------------------------------------*/
-std::error_condition bitbanger_device::call_load()
+std::pair<std::error_condition, std::string> bitbanger_device::call_load()
{
// we don't need to do anything special
- return std::error_condition();
+ return std::make_pair(std::error_condition(), std::string());
}
-std::error_condition bitbanger_device::call_create(int format_type, util::option_resolution *format_options)
+std::pair<std::error_condition, std::string> bitbanger_device::call_create(int format_type, util::option_resolution *format_options)
{
// we don't need to do anything special
- return std::error_condition();
+ return std::make_pair(std::error_condition(), std::string());
}
/*-------------------------------------------------