Module Name: src
Committed By: jmcneill
Date: Sun Aug 28 20:22:42 UTC 2011
Modified Files:
src/sys/external/bsd/drm/dist/bsd-core: i915_drv.c
Log Message:
return 'error' not 0, fixes non-module build
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/external/bsd/drm/dist/bsd-core/i915_drv.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/external/bsd/drm/dist/bsd-core/i915_drv.c
diff -u src/sys/external/bsd/drm/dist/bsd-core/i915_drv.c:1.9 src/sys/external/bsd/drm/dist/bsd-core/i915_drv.c:1.10
--- src/sys/external/bsd/drm/dist/bsd-core/i915_drv.c:1.9 Sun Aug 28 15:40:50 2011
+++ src/sys/external/bsd/drm/dist/bsd-core/i915_drv.c Sun Aug 28 20:22:42 2011
@@ -242,7 +242,7 @@
return ENOTTY;
}
- return 0;
+ return error;
}
#endif