aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/llee/StorageProxy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llee/StorageProxy.c b/tools/llee/StorageProxy.c
index 05ffdf4b4c..e4f3fbb0d4 100644
--- a/tools/llee/StorageProxy.c
+++ b/tools/llee/StorageProxy.c
@@ -97,5 +97,5 @@ void* llvmReadFile(const char *key, size_t *size) {
*/
int llvmExecve(const char *filename, char *const argv[], char *const envp[]) {
char* cacheFile = computeCachedFile(filename);
- executeProgram(cacheFile, argv, envp);
+ return executeProgram(cacheFile, argv, envp);
}