Changeset 1433ecda in mainline for uspace/app/mixerctl/mixerctl.c
- Timestamp:
- 2018-04-04T15:42:37Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2c4e1cc
- Parents:
- 47b2d7e3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/mixerctl/mixerctl.c
r47b2d7e3 r1433ecda 49 49 static void print_levels(async_exch_t *exch) 50 50 { 51 char *name = NULL;51 char *name = NULL; 52 52 unsigned count = 0; 53 53 errno_t ret = audio_mixer_get_info(exch, &name, &count); … … 82 82 } 83 83 84 static unsigned get_number(const char *str)84 static unsigned get_number(const char *str) 85 85 { 86 86 uint16_t num; … … 129 129 { 130 130 const char *service = DEFAULT_SERVICE; 131 void (*command)(async_exch_t *, int, char *[]) = NULL;131 void (*command)(async_exch_t *, int, char *[]) = NULL; 132 132 133 133 if (argc >= 2 && str_cmp(argv[1], "setlevel") == 0) {
Note:
See TracChangeset
for help on using the changeset viewer.