Changeset 72741f4 in buchla-68k for ram/localkb.c


Ignore:
Timestamp:
11/15/2017 07:28:55 PM (6 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
00c31a2
Parents:
7c5def4
Message:

Fixed incompatible pointers.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/localkb.c

    r7c5def4 r72741f4  
    242242                                        while (lstendc-- > 0) { /* note ends */
    243243
    244                                                 ep = lstends[lstendc];
     244                                                ep = (struct s_entry *)lstends[lstendc];
    245245                                                lstends[lstendc] = (struct n_entry *)NULL;
    246246
     
    268268                                        while (lstbgnc-- > 0) { /* note begins */
    269269
    270                                                 ep = lstbgns[lstbgnc];
     270                                                ep = (struct s_entry *)lstbgns[lstbgnc];
    271271                                                lstbgns[lstbgnc] = (struct n_entry *)NULL;
    272272
Note: See TracChangeset for help on using the changeset viewer.