Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/fontviewer/fontviewer.c

    rc1694b6b r05b59393  
    3636#include <stdlib.h>
    3737#include <errno.h>
    38 #include <stdlib.h>
     38#include <malloc.h>
    3939#include <stdbool.h>
    40 #include <str_error.h>
    4140#include <window.h>
    4241#include <canvas.h>
     
    9897        int rc = draw();
    9998        if (rc != EOK) {
    100                 printf("Failed drawing: %s.\n", str_error(rc));
     99                printf("Failed drawing: %d.\n", rc);
    101100                exit(1);
    102101        }
     
    277276        int rc = draw();
    278277        if (rc != EOK) {
    279                 printf("Failed drawing: %s.\n", str_error(rc));
     278                printf("Failed drawing: %d.\n", rc);
    280279                return 2;
    281280        }
Note: See TracChangeset for help on using the changeset viewer.