remove unused variable

This commit is contained in:
josch
2014-09-24 21:22:04 +02:00
parent c763863d27
commit dacb6937f1

View File

@@ -29,7 +29,6 @@ int mfshell_cmd_list(mfshell * mfshell, int argc, char *const argv[])
{ {
(void)argv; (void)argv;
int retval; int retval;
const char *folder_curr;
if (mfshell == NULL) if (mfshell == NULL)
return -1; return -1;
@@ -39,8 +38,6 @@ int mfshell_cmd_list(mfshell * mfshell, int argc, char *const argv[])
return -1; return -1;
} }
folder_curr = folder_get_key(mfshell->folder_curr);
// first folders // first folders
retval = retval =
mfconn_api_folder_get_content(mfshell->conn, 0, mfshell->folder_curr); mfconn_api_folder_get_content(mfshell->conn, 0, mfshell->folder_curr);