mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 22:53:23 +00:00
Fix typo ('suundo' instead of 'suunto')
I apparently was so congested that it affected my typing too when I wrote that, and then copy-paste meant that the use and declaration matched despite the misspelling. Reported-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
a65b9b48e0
commit
34d682416f
1 changed files with 2 additions and 2 deletions
4
file.c
4
file.c
|
@ -72,7 +72,7 @@ static void suunto_read(struct zip_file *file, GError **error)
|
|||
}
|
||||
#endif
|
||||
|
||||
static int try_to_open_suundo(const char *filename, GError **error)
|
||||
static int try_to_open_suunto(const char *filename, GError **error)
|
||||
{
|
||||
int success = 0;
|
||||
#ifdef LIBZIP
|
||||
|
@ -98,7 +98,7 @@ static int open_by_filename(const char *filename, const char *fmt, GError **erro
|
|||
{
|
||||
/* Suunto Dive Manager files: SDE */
|
||||
if (!strcasecmp(fmt, "SDE"))
|
||||
return try_to_open_suundo(filename, error);
|
||||
return try_to_open_suunto(filename, error);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue