Changeset 41047bf in mainline
- Timestamp:
- 2011-11-06T17:33:46Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e6da6d5
- Parents:
- 4f100f4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/mount/mount.c
r4f100f4 r41047bf 33 33 #include <errno.h> 34 34 #include <getopt.h> 35 #include <inttypes.h> 35 36 #include "config.h" 36 37 #include "util.h" … … 79 80 old_ent = mtab_ent; 80 81 81 printf("%s on %s ", mtab_ent->fs_name, mtab_ent->mp); 82 printf("%s", mtab_ent->fs_name); 83 if (mtab_ent->instance) 84 printf("/%d", mtab_ent->instance); 85 printf(" on %s ", mtab_ent->mp); 82 86 83 87 if (str_size(mtab_ent->opts) > 0) 84 88 printf("opts=%s ", mtab_ent->opts); 85 89 86 printf("(instance=%d, service_id=%" PRIu64 ")\n", 87 mtab_ent->instance, mtab_ent->service_id); 90 printf("(service=%" PRIun ")\n", mtab_ent->service_id); 88 91 } 89 92
Note:
See TracChangeset
for help on using the changeset viewer.