Changeset 33b8d024 in mainline for uspace/app
- Timestamp:
- 2018-01-16T20:38:46Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2467b41
- Parents:
- d39c46e0
- Location:
- uspace/app
- Files:
-
- 5 edited
-
bdsh/compl.c (modified) (2 diffs)
-
edit/search_impl.h (modified) (1 diff)
-
mixerctl/mixerctl.c (modified) (2 diffs)
-
wavplay/dplay.c (modified) (1 diff)
-
wavplay/drec.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/compl.c
rd39c46e0 r33b8d024 69 69 70 70 /** Pointer inside list of directories */ 71 const char * *path;71 const char *const *path; 72 72 /** If not @c NULL, should be freed in the end. */ 73 c onst char **path_list;73 char **path_list; 74 74 /** Current open directory */ 75 75 DIR *dir; … … 219 219 cs->path_list[0] = dirname; 220 220 cs->path_list[1] = NULL; 221 cs->path = cs->path_list; 221 /* The second const ensures that we can't assign a const 222 * string to the non-const array. */ 223 cs->path = (const char *const *) cs->path_list; 222 224 223 225 } else if (cs->is_command) { -
uspace/app/edit/search_impl.h
rd39c46e0 r33b8d024 43 43 /* Note: This structure is opaque for the user. */ 44 44 45 constwchar_t *pattern;45 wchar_t *pattern; 46 46 size_t pattern_length; 47 47 ssize_t *back_table; -
uspace/app/mixerctl/mixerctl.c
rd39c46e0 r33b8d024 49 49 static void print_levels(async_exch_t *exch) 50 50 { 51 c onst char* name = NULL;51 char* name = NULL; 52 52 unsigned count = 0; 53 53 errno_t ret = audio_mixer_get_info(exch, &name, &count); … … 59 59 60 60 for (unsigned i = 0; i < count; ++i) { 61 c onst char *name = NULL;61 char *name = NULL; 62 62 unsigned levels = 0, current = 0; 63 63 errno_t ret = -
uspace/app/wavplay/dplay.c
rd39c46e0 r33b8d024 353 353 } 354 354 355 c onst char* info = NULL;355 char* info = NULL; 356 356 ret = audio_pcm_get_info_str(session, &info); 357 357 if (ret != EOK) { -
uspace/app/wavplay/drec.c
rd39c46e0 r33b8d024 195 195 } 196 196 197 c onst char* info = NULL;197 char* info = NULL; 198 198 ret = audio_pcm_get_info_str(session, &info); 199 199 if (ret != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.
