1
0
forked from pool/libmaa
libmaa/02-Spelling-typos.patch
Matej Cepl 16accf12ff Accepting request 668830 from home:mcepl:branches:Education
- Upgrade to libmaa-1.4.2:
  * Fix build failure on SunOS-5.11 (alloca)
  * License has been changed from LGPL to MIT, permitted by Rik
    Faith, original author of this library.
  * Build system changed from autotools to mk-configure.
  * Library version/soname was bumped from 3 to 4. I cannot
    guarantee that mk-configure and libtool build shared library
    the same way.
  * Tests were added for stk_*, mem_* and prm_* functions.
  * stk_isempty function was added.
  * stk_* and other was reimplemented without obstack functions
    (glibc extension).

OBS-URL: https://build.opensuse.org/request/show/668830
OBS-URL: https://build.opensuse.org/package/show/Education/libmaa?expand=0&rev=3
2019-01-26 17:58:36 +00:00

24 lines
649 B
Diff

From: Robert Luberda <robert@debian.org>
Date: Wed, 4 May 2011 22:38:50 +0200
Subject: Spelling typos
Fix spelling typos found by lintian
---
maa/sl.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- a/maa/sl.c
+++ b/maa/sl.c
@@ -181,9 +181,9 @@ sl_List sl_create( int (*compare)( const
}
if (!compare)
- err_internal( __func__, "compare fuction is NULL\n" );
+ err_internal( __func__, "compare function is NULL\n" );
if (!key)
- err_internal( __func__, "key fuction is NULL\n" );
+ err_internal( __func__, "key function is NULL\n" );
l = mem_get_object( _sl_Memory );
#if MAA_MAGIC