summaryrefslogtreecommitdiffstats
path: root/src/crypto/cryptoLayer.h
diff options
context:
space:
mode:
authorMichael Brown2007-08-23 22:51:57 +0200
committerMichael Brown2007-08-23 22:51:57 +0200
commit746d0f8febe166a3d5bad03a84ca4e33d1bcfe34 (patch)
tree8fb0d6d2d7066bdbc54f3540fa9564c0ad290127 /src/crypto/cryptoLayer.h
parentAuto-assign drive number only if set to 0xff; almost all applications (diff)
parentuse malloc attribute (diff)
downloadipxe-746d0f8febe166a3d5bad03a84ca4e33d1bcfe34.tar.gz
ipxe-746d0f8febe166a3d5bad03a84ca4e33d1bcfe34.tar.xz
ipxe-746d0f8febe166a3d5bad03a84ca4e33d1bcfe34.zip
Merge commit 'holger/strings'
Diffstat (limited to 'src/crypto/cryptoLayer.h')
-rw-r--r--src/crypto/cryptoLayer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/cryptoLayer.h b/src/crypto/cryptoLayer.h
index 538b84f20..28ce97bc3 100644
--- a/src/crypto/cryptoLayer.h
+++ b/src/crypto/cryptoLayer.h
@@ -31,7 +31,7 @@ typedef void psPool_t;
#define sslAssert( ... ) assert ( __VA_ARGS__ )
-static inline __attribute__ (( always_inline )) void *
+static inline __attribute__ (( always_inline )) void * __malloc
psMalloc ( psPool_t *pool __unused, size_t len ) {
return malloc ( len );
}