Changeset 24050


Ignore:
Timestamp:
10/03/13 22:05:06 (10 years ago)
Author:
nit
Message:

[titan] fix build

Location:
titan/titan
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/global.h

    r24035 r24050  
    2828                if(strlen(text) < 13) return NULL;
    2929               
    30                 tmpstr = ostrcat(getconfig("pluginpath", NULL), &text[13]);
     30                tmpstr = ostrcat(getconfig("pluginpath", NULL), &text[13], 0, 0);
    3131                if(file_exist(tmpstr) == 1) return tmpstr;
    3232               
    3333                free(tmpstr); tmpstr = NULL;
    34                 tmpstr = ostrcat(getconfig("pluginpath1", NULL), &text[13]);
     34                tmpstr = ostrcat(getconfig("pluginpath1", NULL), &text[13], 0, 0);
    3535                if(file_exist(tmpstr) == 1) return tmpstr;
    3636               
    3737                free(tmpstr); tmpstr = NULL;
    38                 tmpstr = ostrcat(getconfig("pluginpath2", NULL), &text[13]);
     38                tmpstr = ostrcat(getconfig("pluginpath2", NULL), &text[13], 0, 0);
    3939                if(file_exist(tmpstr) == 1) return tmpstr;
    4040        }
  • titan/titan/scan.h

    r24042 r24050  
    11331133                        else if(fenode->feinfo->type == FE_QAM)
    11341134                        {
    1135                                 fetunedvbc(fenode, tpnode) != 0)
     1135                                if(fetunedvbc(fenode, tpnode) != 0)
    11361136                                {
    11371137                                        scaninfo.tpcount++;
  • titan/titan/skinadjust.h

    r23994 r24050  
    1717        struct skin* listboxselect = getscreennode(skinadjust, "listboxselect");
    1818        struct skin* tmp = NULL;
    19         char* ret = NULL;
    2019
    2120        changeinput(fontsizeadjust, "0\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n-15\n-14\n-13\n-12\n-11\n-10\n-9\n-8\n-7\n-6\n-5\n-4\n-3\n-2\n-1");
Note: See TracChangeset for help on using the changeset viewer.