]> Git Repo - J-u-boot.git/blobdiff - lib/vsprintf.c
Merge tag 'signed-rpi-next' of git://github.com/agraf/u-boot
[J-u-boot.git] / lib / vsprintf.c
index 226f4eb3e5125878200fbeb1109d3ab24e41e260..5f7a5f17dc6917cf539c9b207698408a43eda493 100644 (file)
@@ -300,8 +300,9 @@ static char *device_path_string(char *buf, char *end, void *dp, int field_width,
 {
        u16 *str;
 
+       /* If dp == NULL output the string '<NULL>' */
        if (!dp)
-               return "<NULL>";
+               return string16(buf, end, dp, field_width, precision, flags);
 
        str = efi_dp_str((struct efi_device_path *)dp);
        if (!str)
This page took 0.024456 seconds and 4 git commands to generate.