1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
Description: spelling issues found by lintian
Index: ta-lib-0.6.4/include/ta_common.h
===================================================================
--- ta-lib-0.6.4.orig/include/ta_common.h 2025-01-11 05:49:26.000000000 +0100
+++ ta-lib-0.6.4/include/ta_common.h 2025-06-19 23:24:14.591385699 +0200
@@ -123,7 +123,7 @@
* }
*
* Would display:
- * "Error 1(TA_LIB_NOT_INITIALIZE): TA_Initialize was not sucessfully called"
+ * "Error 1(TA_LIB_NOT_INITIALIZE): TA_Initialize was not successfully called"
*/
typedef struct TA_RetCodeInfo
{
Index: ta-lib-0.6.4/include/ta_defs.h
===================================================================
--- ta-lib-0.6.4.orig/include/ta_defs.h 2025-01-11 05:49:26.000000000 +0100
+++ ta-lib-0.6.4/include/ta_defs.h 2025-06-19 23:24:22.527391508 +0200
@@ -225,7 +225,7 @@
ENUM_BEGIN( RetCode )
/* 0 */ ENUM_DEFINE( TA_SUCCESS, Success ), /* No error */
- /* 1 */ ENUM_DEFINE( TA_LIB_NOT_INITIALIZE, LibNotInitialize ), /* TA_Initialize was not sucessfully called */
+ /* 1 */ ENUM_DEFINE( TA_LIB_NOT_INITIALIZE, LibNotInitialize ), /* TA_Initialize was not successfully called */
/* 2 */ ENUM_DEFINE( TA_BAD_PARAM, BadParam ), /* A parameter is out of range */
/* 3 */ ENUM_DEFINE( TA_ALLOC_ERR, AllocErr ), /* Possibly out-of-memory */
/* 4 */ ENUM_DEFINE( TA_GROUP_NOT_FOUND, GroupNotFound ),
Index: ta-lib-0.6.4/src/ta_common/ta_retcode.c
===================================================================
--- ta-lib-0.6.4.orig/src/ta_common/ta_retcode.c 2025-01-11 05:49:26.000000000 +0100
+++ ta-lib-0.6.4/src/ta_common/ta_retcode.c 2025-06-19 23:24:00.723375553 +0200
@@ -50,7 +50,7 @@
static TA_InternalRetCodeInfo retCodeInfoTable[] = {
{(TA_RetCode)0,"TA_SUCCESS","No error"},
- {(TA_RetCode)1,"TA_LIB_NOT_INITIALIZE","TA_Initialize was not sucessfully called"},
+ {(TA_RetCode)1,"TA_LIB_NOT_INITIALIZE","TA_Initialize was not successfully called"},
{(TA_RetCode)2,"TA_BAD_PARAM","A parameter is out of range"},
{(TA_RetCode)3,"TA_ALLOC_ERR","Possibly out-of-memory"},
{(TA_RetCode)4,"TA_GROUP_NOT_FOUND","No Info"},
Index: ta-lib-0.6.4/src/ta_common/ta_retcode.csv
===================================================================
--- ta-lib-0.6.4.orig/src/ta_common/ta_retcode.csv 2025-01-11 05:49:26.000000000 +0100
+++ ta-lib-0.6.4/src/ta_common/ta_retcode.csv 2025-06-19 23:24:05.671379172 +0200
@@ -1,5 +1,5 @@
0,TA_SUCCESS,No error
-1,TA_LIB_NOT_INITIALIZE,TA_Initialize was not sucessfully called
+1,TA_LIB_NOT_INITIALIZE,TA_Initialize was not successfully called
2,TA_BAD_PARAM,A parameter is out of range
3,TA_ALLOC_ERR,Possibly out-of-memory
4,TA_GROUP_NOT_FOUND,No Info
|