Changeset 26c02b22 in mainline


Ignore:
Timestamp:
2013-03-28T20:58:13Z (11 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2d1195c0
Parents:
5d9fce4
Message:

Fix printf format error

error: format not a string literal and no format arguments [-Werror=format-security]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/ls/ls.c

    r5d9fce4 r26c02b22  
    315315{
    316316        if (stat(path, &de->s)) {
    317                 cli_error(CL_ENOENT, path);
     317                cli_error(CL_ENOENT, "%s", path);
    318318                return LS_BOGUS;
    319319        }
Note: See TracChangeset for help on using the changeset viewer.