From 2b0c8eed77b5391256be1604a42ed79609b7472e Mon Sep 17 00:00:00 2001 From: Steven Smith Date: Tue, 3 Feb 2015 20:40:03 -0800 Subject: [PATCH] Use app_install_socket. --- source/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/main.cpp b/source/main.cpp index bf743bd..1a2c3e4 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -101,7 +101,7 @@ int main(int argc, char **argv) { confirmStream << "Install the received application?" << "\n"; confirmStream << "Size: " << file.fileSize << " bytes (" << std::fixed << std::setprecision(2) << file.fileSize / 1024.0f / 1024.0f << "MB)" << "\n"; if(ui_prompt(confirmStream.str(), true)) { - int ret = app_install(destination, file.socket, true, file.fileSize, onProgress); + int ret = app_install_socket(destination, file.socket, file.fileSize, onProgress); std::stringstream resultMsg; resultMsg << "Install "; if(ret == 0) {