Changeset 44137


Ignore:
Timestamp:
10/11/19 14:57:30 (4 years ago)
Author:
gost
Message:

fix

Location:
titan/titan
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/dvbdev.h

    r44135 r44137  
    161161                                        sethypridtunernew(node, getconfig(tmpstr, NULL));
    162162                                else
    163                                         sethypridtunernew(node, "0"));
     163                                        sethypridtunernew(node, "0");
    164164#else
    165165                                if(getconfig(tmpstr, NULL) != NULL)
  • titan/titan/global.h

    r44135 r44137  
    68046804       
    68056805        tmpstr = ostrcat(tuner->feshortname, "_hyprid_last", 0, 0);
    6806         char* tmpstrh = getconfig(tmpstr, NULL);
    6807         if(tmpstrh == NULL)
    6808                 tmpstrh = ostrcat("0", "NULL", 0, 0);
    6809         if(ostrcmp(tmpsrth , value) == 0)
    6810         {
    6811                 printf("set hyprid.. new value %s eq old value %s\n", value, tmpsrth);
     6806        if(ostrcmp(getconfig(tmpstr, "0"), value) == 0)
     6807        {
     6808                printf("set hyprid.. new value %s eq old value %s\n", value, getconfig(tmpstr, "0"));
    68126809                free(tmpstr), tmpstr = NULL;
    68136810                return 0;
Note: See TracChangeset for help on using the changeset viewer.