blob: 2b82c3594c6e2a1d38d22d87b6c206729af3f470 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* ----------------------------------------------------------------------- *
*
* Copyright 2009 Pierre-Alexandre Meyer
*
* This file is part of Syslinux, and is made available under
* the terms of the GNU General Public License version 2.
*
* ----------------------------------------------------------------------- */
#include <stdio.h>
#include <stdlib.h>
#include <disk/errno_disk.h>
/**
* get_error - decode a disk error status
* @buffer_ptr: Preallocated buffer
*
* Fill @buffer_ptr with the last errno_disk
**/
void get_error(void* buffer_ptr)
{
snprintf(buffer_ptr, MAX_DISK_ERRNO, "Disklib: error %d\n", errno_disk);
}
|