increase file size range for display in the ls command.

This commit is contained in:
nvt-se 2008-12-01 15:58:14 +00:00
parent c0ce2efd89
commit 53355d095c
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@
*
* This file is part of the Contiki operating system.
*
* $Id: shell-file.c,v 1.7 2008/11/24 15:18:27 nvt-se Exp $
* $Id: shell-file.c,v 1.8 2008/12/01 15:58:14 nvt-se Exp $
*/
/**
@ -88,7 +88,7 @@ PROCESS_THREAD(shell_ls_process, ev, data)
totsize = 0;
while(cfs_readdir(&dir, &dirent) == 0) {
totsize += dirent.size;
sprintf(buf, "%3d ", dirent.size);
sprintf(buf, "%3lu ", (unsigned long)dirent.size);
/* printf("'%s'\n", dirent.name);*/
shell_output_str(&ls_command, buf, dirent.name);
}