Changeset 1398 in MondoRescue


Ignore:
Timestamp:
May 7, 2007, 2:36:13 AM (17 years ago)
Author:
Bruno Cornec
Message:

Typos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/src/lib/mr_list.c

    r1392 r1398  
    1717struct mr_list *mr_list_alloc(void) {
    1818
     19    struct mr_list *list = NULL;
     20
    1921    list = mr_malloc(sizeof(struct mr_list));
    2022    list->first = NULL;
     
    2527/* Elt of list allocation and initialization */
    2628struct mr_list_elt *mr_list_alloc_elt(void *data, void (*mr_free_data)(void *data)) {
     29
     30    struct mr_list_elt *elt = NULL;
    2731
    2832    elt = mr_malloc(sizeof(struct mr_list_elt));
Note: See TracChangeset for help on using the changeset viewer.