Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 5346
b: refs/heads/master
c: 856def8
h: refs/heads/master
v: v3
  • Loading branch information
Henrik Kretzschmar authored and Jaroslav Kysela committed Jul 28, 2005
1 parent e9ed3b3 commit d2e735b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5b738babf13d51285710ed57336ee5f072ac9490
refs/heads/master: 856def8a4695066e6cbd2919c5987f1df23dbe8a
5 changes: 3 additions & 2 deletions trunk/sound/core/info.c
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ int snd_info_get_line(snd_info_buffer_t * buffer, char *line, int len)
}

/**
* snd_info_get_line - parse a string token
* snd_info_get_str - parse a string token
* @dest: the buffer to store the string token
* @src: the original string
* @len: the max. length of token - 1
Expand Down Expand Up @@ -939,7 +939,8 @@ int snd_info_unregister(snd_info_entry_t * entry)
{
struct proc_dir_entry *root;

snd_assert(entry != NULL && entry->p != NULL, return -ENXIO);
snd_assert(entry != NULL, return -ENXIO);
snd_assert(entry->p != NULL, return -ENXIO);
root = entry->parent == NULL ? snd_proc_root : entry->parent->p;
snd_assert(root, return -ENXIO);
down(&info_mutex);
Expand Down

0 comments on commit d2e735b

Please sign in to comment.