summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2010-09-14 15:35:46 +0200
committerAlexander Larsson <alexl@redhat.com>2010-09-20 10:25:17 +0200
commit67906d3a092206f161ebca3a5a1123bb528e1d68 (patch)
tree6cbc86134d76ecc6e5d0d9d205e739507e48002b
parent578b1e53e623b0d5d69ee6066bae30ddccacac42 (diff)
Make internal functions static
-rw-r--r--display/res.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/display/res.c b/display/res.c
index 07f8991..c053a2f 100644
--- a/display/res.c
+++ b/display/res.c
@@ -1302,7 +1302,7 @@ typedef struct InternalImage {
#define IMAGE_KEY_HASH_VAL(hsurf) (HSURF_HASH_VAL(hsurf) & IMAGE_KEY_HASH_MASK)
-void ImageKeyPut(PDev *pdev, HSURF hsurf, UINT64 unique, UINT32 key)
+static void ImageKeyPut(PDev *pdev, HSURF hsurf, UINT64 unique, UINT32 key)
{
ImageKey *image_key = &pdev->Res->image_key_lookup[IMAGE_KEY_HASH_VAL(hsurf)];
@@ -1314,7 +1314,7 @@ void ImageKeyPut(PDev *pdev, HSURF hsurf, UINT64 unique, UINT32 key)
image_key->key = key;
}
-BOOL ImageKeyGet(PDev *pdev, HSURF hsurf, UINT64 unique, UINT32 *key)
+static BOOL ImageKeyGet(PDev *pdev, HSURF hsurf, UINT64 unique, UINT32 *key)
{
ImageKey *image_key;